Exponential Backoff with Jitter - CI/CD用語集の定義
ジッター付きexponential backoffは、リトライ間の待機を幾何級数的に増やし各遅延にランダム性を加えることで、多数のクライアントが足並みをそろえてリトライして回復中のサービスを再び過負荷にするのを防ぎます(thundering herd問題)。
関連ガイド
Circuit Breaker - CI/CD Glossary DefinitionA circuit breaker stops calling a failing dependency once errors cross a threshold, failing fast for a cooldo…
Rate Limiting - CI/CD Glossary DefinitionRate limiting caps how many requests a client may make in a window, protecting a service from overload and ab…
Idempotency Key - CI/CD Glossary DefinitionAn idempotency key is a unique token a client attaches to a request so a server can recognize and ignore dupl…