ApiClient creates a new httpx.AsyncClient per JWKS / OIDC fetch with no timeout and no single-flight, causing "Unknown auth error" storms under load
Ninguém assumiu esta issue ainda.
Avaliação
- Dificuldade
- 4/5
- Tempo estimado
- 3-5 dias
- Facilidade para iniciantes
- 48/100
- Tipo de issue
- Bug
- Clareza
- Razoavelmente clara
- Status de atividade
- Pouca atividade
- Stack de tecnologia
- python
- Domínio
- authentication, backend-api-design, performance
Direção de pesquisa
Comece por src/auth0_api_python/utils.py e rastreie ApiClient._fetch_jwks e _fetch_oidc_metadata por meio de utils.fetch_jwks, utils.fetch_oidc_metadata e InMemoryCache.get. Revise como verify_request chega a esses caminhos de cache miss e como httpx.AsyncClient é usado. Considera-se concluído quando os novos fetches de JWKS e OIDC evitarem o comportamento de falha relatado do cliente, de timeout e de solicitações concorrentes sem alterar a semântica da autenticação bem-sucedida.
Escrita pelo modelo de indexação a partir do texto da issue.
Descrição
Checklist
- I have looked into the Readme and Examples, and have not found a suitable solution or answer.
- I have looked into the API documentation and have not found a suitable solution or answer.
- I have searched the issues and have not found a suitable solution or answer.
- I have searched the Auth0 Community forums and have not found a suitable solution or answer.
- I agree to the terms within the Auth0 Code of Conduct.
Description
ApiClient._fetch_jwks and _fetch_oidc_metadata (via
utils.fetch_jwks / utils.fetch_oidc_metadata) construct a brand-new
httpx.AsyncClient() on every cache miss with no explicit timeout
configured, and there is no single-flight protection around the
refetch path. Combined, these turn routine cache expiry into a
self-inflicted outage under any non-trivial concurrency.
Reproduction
- Stand up a FastAPI service that calls
ApiClient.verify_request
on every authenticated route. - Drive ≥ ~30 RPS of authenticated requests against it (we hit it
on a 4 vCPU ECS Fargate task during a k6 load test). - Wait for the in-memory JWKS cache to expire — by default Auth0
returnsCache-Control: max-age=600, so this happens every ~10
minutes under steady load. - Observe a sudden burst of
httpx.ConnectTimeoutchained out of
ApiClient._fetch_jwks, surfacing to callers as opaque "Unknown
auth error" 5xx responses on every authenticated route until the
herd subsides. Sentry trace shows
auth0_api_python.errors.UnknownAuth0Exception←
httpx.ConnectTimeout.
Additional context
In src/auth0_api_python/utils.py
async def fetch_jwks(jwks_uri, custom_fetch=None):
...
async with httpx.AsyncClient() as client: # 1
resp = await client.get(jwks_uri) # 2
...
- No connection pooling across calls. A fresh client is created
and torn down per fetch. Every cache miss = a fresh TCP + TLS
handshake tohttps://<tenant>.auth0.com/. Under load this
exhausts ephemeral source-port budget on the host and slows
everything else on the box. - No explicit timeout.
httpx.AsyncClient()with notimeout=
uses httpx's default 5-second connect/read/write/pool budget. On a
stressed event loop or a slow Auth0 region that 5s budget is
routinely blown, raisinghttpx.ConnectTimeout/
httpx.ReadTimeout. Those bubble up into_fetch_jwksand the
caller seesConnectTimeoutchained toUnknownAuth0Exception—
not a 401, not a 503, just an opaque "unknown auth error". - No single-flight on refetch. When the in-memory cache expires
(InMemoryCache.getreturnsNone), every concurrent request
that reaches_fetch_jwkssimultaneously fires its own outbound
JWKS fetch. N requests in flight at the moment of expiry = N
concurrent JWKS calls to Auth0. Auth0 throttles some of them, the
others time out per (1) and (2), and any request that lost the
race fails auth.
The same three problems apply verbatim to fetch_oidc_metadata and
_fetch_oidc_metadata.
auth0-api-python version
1.0.0b8
Python version
3.11
- Linguagem predominante
- Python
- Estrelas
- 4
- Forks
- 9
- Métricas de merge de PRs
- Nenhum PR com merge em 30d
Guia de contribuição
Primeiros passos
- Leia a issue inteira e depois o guia de contribuição do projeto.
- Comente na issue dizendo que vai assumir — evita que duas pessoas façam o mesmo trabalho.
- Faça um fork do repositório e trabalhe em uma branch.
- Abra um pull request que referencie o número da issue.
Mais de auth0/auth0-api-python
-
bug
Dificuldade 2/5 1-3 horas Facilidade para iniciantes 68/100
auth0/auth0-api-python#92 · 2 comentários · 1 reação ·
-
Dificuldade 5/5 Mais de uma semana Facilidade para iniciantes 35/100
auth0/auth0-api-python#113 ·
-
Dificuldade 2/5 1-3 horas Facilidade para iniciantes 52/100
auth0/auth0-api-python#59 ·
Todas as issues de auth0/auth0-api-python
Issues semelhantes
-
triage/confirmed
Dificuldade 2/5 1-3 horas Facilidade para iniciantes 88/100
agentscope-ai/agentscope#2775 ·
-
comp/desktop P3 type/bug
Dificuldade 1/5 Menos de uma hora Facilidade para iniciantes 92/100
NousResearch/hermes-agent#118866 ·
-
bug
Dificuldade 1/5 Menos de uma hora Facilidade para iniciantes 90/100
apache/cloudstack#14222 ·
-
Dificuldade 2/5 1-3 horas Facilidade para iniciantes 76/100
-
bug
Dificuldade 2/5 1-3 horas Facilidade para iniciantes 82/100