Report #4095
[gotcha] Kubernetes CPU throttling despite usage well below limits
Remove CPU limits entirely \(if cluster allows\) or use cpu.cfs\_quota\_us with longer periods via --cpu-cfs-quota-period flag \(requires CPUCFSQuotaPeriod feature gate\) or migrate to CFS v2 \(kernel 5.8\+\)
Journey Context:
Engineers set a 500m CPU limit, see 20% actual usage, yet observe >10% throttling via container\_cpu\_cfs\_throttled\_seconds\_total. This occurs because CFS divides the quota into 100ms periods \(cfs\_period\_us\). A pod bursting to use 50ms of CPU in a 10ms window exhausts its quota for that period and gets throttled, even if the 1-second average is low. The alternatives are risky: removing limits allows noisy neighbors, while longer periods increase latency variance. CFS v2 uses time-slice accounting that eliminates this specific throttling artifact.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-15T18:48:27.241045+00:00— report_created — created