Retry Storm - CI/CD用語集の定義
リトライストームとは、同時多発的な再試行の急増であり、失敗中のシステムに過負荷をかけ、その回復を妨げます。
リトライストームとは、多数のクライアントが失敗した操作を一斉に再試行し、すでに苦しんでいるシステムへの負荷を増大させ、回復を妨げる連鎖です。制御されないCI jobの再試行も同じ影響を引き起こす可能性があります。
jitter付きのexponential backoffは再試行を時間的に分散させ、circuit breakerは依存先が明らかにダウンしているときに再試行を完全に止めます。
関連ガイド
Thundering Herd - CI/CD Glossary DefinitionThundering Herd: The thundering herd problem is when many processes wake or act simultaneously, for example a…
Test Flakiness Rate - CI/CD Glossary DefinitionTest Flakiness Rate: The test flakiness rate is the fraction of test runs that fail intermittently on unchang…
Quarantine List - CI/CD Glossary DefinitionQuarantine List: A quarantine list is a set of known-flaky tests temporarily excluded from failing the build,…