SGPINF-961: fix: reduce HTTPX connection limits to add backpressure#144
Merged
sayakmaity merged 1 commit intomainfrom Feb 5, 2026
Merged
SGPINF-961: fix: reduce HTTPX connection limits to add backpressure#144sayakmaity merged 1 commit intomainfrom
sayakmaity merged 1 commit intomainfrom
Conversation
Lower HTTPX connection pool limits from 1000 to configurable defaults (200 max connections, 100 max keepalive) to prevent flooding agent pods with concurrent requests during high load. Excess requests now queue at the pool level instead of all hitting OpenAI simultaneously.
sayakmaity
added a commit
to scaleapi/scale-agentex-python
that referenced
this pull request
Feb 5, 2026
- Add `num_retries=3` default to LLMConfig so litellm retries on OpenAI 429 rate limit errors with built-in exponential backoff - Increase Temporal DEFAULT_RETRY_POLICY from 1 attempt (no retries) to 3 attempts with exponential backoff (1s, 2s, 4s... up to 30s) This complements the HTTPX connection limit reduction in agentex backend (scaleapi/scale-agentex#144) to address OpenAI rate limiting under high concurrent load.
3 tasks
smoreinis
approved these changes
Feb 5, 2026
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.
Summary
HTTPX_MAX_CONNECTIONS(default: 200) andHTTPX_MAX_KEEPALIVE_CONNECTIONS(default: 100) env vars, down from hardcoded 1000/1000ServiceUnavailableError+ 9-15s latency)Test plan
cd agentex && make testpassesHTTPX_MAX_CONNECTIONS/HTTPX_MAX_KEEPALIVE_CONNECTIONSenv vars