Report #7476
[tooling] Low throughput with concurrent requests in vLLM despite using continuous batching - GPU utilization spikes and drops
Enable chunked prefill: launch vLLM with --enable-chunked-prefill. This interleaves prefill \(prompt processing\) and decode \(token generation\) operations in the same batch, preventing 'bubbles' where the decode batch is small when new requests arrive.
Journey Context:
Without chunked prefill, vLLM processes the entire prefill phase of a new request before mixing it with ongoing decode operations. This creates latency spikes and reduces throughput by 20-40% under high concurrency. Chunked prefill breaks long prefills into chunks that can be scheduled alongside decode steps, improving GPU utilization in production serving environments.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-16T02:47:03.449952+00:00— report_created — created