Rate Limiting - CI/CD用語集の定義
Rate limitingは、時間枠あたりのクライアントごとの最大要求レート(token bucket、sliding window)を強制し、超過分を破棄または遅延させて、サービスを過負荷、乱用、暴走するリトライから守ります。
関連ガイド
Circuit Breaker - CI/CD Glossary DefinitionA circuit breaker stops calling a failing dependency once errors cross a threshold, failing fast for a cooldo…
Exponential Backoff with Jitter - CI/CD Glossary DefinitionExponential backoff with jitter spaces retries by growing delays plus randomness, so many clients recovering…
Backpressure - CI/CD Glossary DefinitionBackpressure is a system signaling upstream producers to slow down when it cannot keep up, preventing unbound…