English

FLYING SERVING: On-the-Fly Parallelism Switching for Large Language Model Serving

Distributed, Parallel, and Cluster Computing 2026-03-03 v2

Abstract

Production LLM serving must simultaneously deliver high throughput, low latency, and sufficient context capacity under non-stationary traffic and mixed request requirements. Data parallelism (DP) maximizes throughput by running independent replicas, while tensor parallelism (TP) reduces per-request latency and pools memory for long-context inference. However, existing serving stacks typically commit to a static parallelism configuration at deployment; adapting to bursts, priorities, or long-context requests is often disruptive and slow. We present Flying Serving, a vLLM-based system that enables online DP-TP switching without restarting engine workers. Flying Serving makes reconfiguration practical by virtualizing the state that would otherwise force data movement: (i) a zero-copy Model Weights Manager that exposes TP shard views on demand, (ii) a KV Cache Adaptor that preserves request KV state across DP/TP layouts, (iii) an eagerly initialized Communicator Pool to amortize collective setup, and (iv) a deadlock-free scheduler that coordinates safe transitions under execution skew. Across three popular LLMs and realistic serving scenarios, Flying Serving improves performance by up to 4.79×4.79\times under high load and 3.47×3.47\times under low load while supporting latency- and memory-driven requests.

Keywords

Cite

@article{arxiv.2602.22593,
  title  = {FLYING SERVING: On-the-Fly Parallelism Switching for Large Language Model Serving},
  author = {Shouwei Gao and Junqi Yin and Feiyi Wang and Wenqian Dong},
  journal= {arXiv preprint arXiv:2602.22593},
  year   = {2026}
}

Comments

This paper is accepted by the 40th ACM International Conference on Supercomputing (ICS 2026)

R2 v1 2026-07-01T10:53:16.627Z