Throttling - CI/CD用語集の定義
Throttling とは、サービスがしきい値を超えたリクエストを遅延または拒否して (多くは HTTP 429)、クライアントを意図的に制限することです。CI は backoff、jitter、cache でこれを吸収します。
関連ガイド
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…