Distributed Multi-Agent Reinforcement Learning with One-hop Neighbors and Compute Straggler Mitigation
Baoqian Wang, Junfei Xie, Nikolay Atanasov
TL;DR
This work tackles the scalability of multi-agent reinforcement learning by introducing DARL1N, which factorizes value and policy representations to depend only on one-hop neighbors within a proximity graph, enabling distributed, off-policy actor-critic learning. It further advances robustness to compute stragglers with a Coded DARL1N architecture that encodes redundant computations across multiple learners and provides unbiased gradient estimates, converging similarly to SGD-based methods. The authors analyze several assignment schemes (MDS, Random Sparse, Repetition, LDGM) in terms of computation overhead and straggler resilience, and validate the approach through extensive experiments across five MARL benchmarks, showing faster training and competitive or superior policy quality, especially as the agent count grows. The combined algorithmic and coding-architecture contributions offer a practical path to scalable, resilient MARL in distributed settings, with guidance on selecting coding schemes based on system stability and performance priorities.
Abstract
Most multi-agent reinforcement learning (MARL) methods are limited in the scale of problems they can handle. With increasing numbers of agents, the number of training iterations required to find the optimal behaviors increases exponentially due to the exponentially growing joint state and action spaces. This paper tackles this limitation by introducing a scalable MARL method called Distributed multi-Agent Reinforcement Learning with One-hop Neighbors (DARL1N). DARL1N is an off-policy actor-critic method that addresses the curse of dimensionality by restricting information exchanges among the agents to one-hop neighbors when representing value and policy functions. Each agent optimizes its value and policy functions over a one-hop neighborhood, significantly reducing the learning complexity, yet maintaining expressiveness by training with varying neighbor numbers and states. This structure allows us to formulate a distributed learning framework to further speed up the training procedure. Distributed computing systems, however, contain straggler compute nodes, which are slow or unresponsive due to communication bottlenecks, software or hardware problems. To mitigate the detrimental straggler effect, we introduce a novel coded distributed learning architecture, which leverages coding theory to improve the resilience of the learning system to stragglers. Comprehensive experiments show that DARL1N significantly reduces training time without sacrificing policy quality and is scalable as the number of agents increases. Moreover, the coded distributed learning architecture improves training efficiency in the presence of stragglers.
