Large Language Models

Revisiting Parameter Server in LLM Post-Training

XXinyi WanPPenghui QiGGuangxing HuangCChaoyi RuanMMin LinJJialin Li
Published
January 27, 2026
Authors
6
Word Count
8,811
Code
Includes code

ODC adapts parameter server for faster LLM training.

Abstract

Modern data parallel (DP) training favors collective communication over parameter servers (PS) for its simplicity and efficiency under balanced workloads. However, the balanced workload assumption no longer holds in large language model (LLM) post-training due to the high variance in sequence lengths. Under imbalanced workloads, collective communication creates synchronization barriers, leading to under-utilization of devices with smaller workloads. This change in training dynamics calls for a revisit of the PS paradigm for its robustness to such imbalance. We propose On-Demand Communication (ODC), which adapts PS into Fully Sharded Data Parallel (FSDP) by replacing collective all-gather and reduce-scatter with direct point-to-point communication. Compared to FSDP, ODC reduces the synchronization barrier from once per layer to once per minibatch and decouples the workload on each device so that faster workers are not stalled. It also enables simpler and more effective load balancing at the minibatch level. Across diverse LLM post-training tasks, ODC consistently improves device utilization and training throughput, achieving up to a 36\% speedup over standard FSDP. These results demonstrate that ODC is a superior fit for the prevalent imbalanced workloads in LLM post-training. Our implementation of ODC and integration with FSDP is open-sourced at https://github.com/sail-sg/odc.

Key Takeaways

  • 1

    ODC significantly speeds up LLM post-training.

  • 2

    Reduces idle time and improves training throughput.

  • 3

    Effective under imbalanced workloads and packing strategies.

Limitations

  • Less efficient for inter-node communication.

  • Requires modifications to existing infrastructure.

Keywords

data parallelparameter serverscollective communicationFully Sharded Data ParallelOn-Demand Communicationall-gatherreduce-scatterpoint-to-point communicationload balancingdevice utilizationtraining throughput

More in Large Language Models

View all
Revisiting Parameter Server in LLM Post-Training | Paperchime