Throttling - Definição do Glossário de CI/CD
Throttling é quando um serviço limita intencionalmente um cliente atrasando ou rejeitando requisições acima de um limite (frequentemente HTTP 429); o CI absorve isso com backoff, jitter e cache.
Guias relacionados
Rate Limit - CI/CD Glossary DefinitionA rate limit caps how many requests a client may make to an API in a window. Hitting one - like Docker Hub or…
Exponential Backoff - CI/CD Glossary DefinitionExponential backoff waits progressively longer between retries (1s, 2s, 4s...), often with jitter, so a strug…
Idempotency - CI/CD Glossary DefinitionIdempotency means an operation can run repeatedly with the same effect as running it once. It is what makes r…