Raise prod CPU limit to 2 and request to 500m to stop CFS throttling#131
Merged
Conversation
…ottling Pods average 0.2-0.33 cores but are throttled in 5-35% of CFS periods all day: Go 1.25 floors GOMAXPROCS at 2, so with a 1-CPU quota the process can exhaust a 100ms period's allowance in 50ms and stall for the rest, adding tail latency to webhook sends and Kafka consumption. A limit of 2 matches GOMAXPROCS so bursts can't outrun the quota. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
Prod pods are being CPU-throttled in 5–35% of enforcement periods, continuously, on every pod (
CPUThrottlingHighalerts) — despite averaging only 0.2–0.33 cores against the 1-core limit.The cause is a burst/limit mismatch, not capacity: Go 1.25's container-aware GOMAXPROCS has a documented floor of 2 (confirmed live:
go_sched_gomaxprocs_threads 2), so the process can consume CPU at 2× the 1-core quota during bursts, exhausting a 100ms enforcement period's allowance in 50ms and then stalling for the remainder. Each stall lands on in-flight work — webhook HTTP sends and Kafka batches — adding tail latency that feeds both the consumer lag and the spurious webhook failure counts we've been fixing.What
Verification
After deploy, the throttle ratio should drop to ~0:
🤖 Generated with Claude Code