Error Handling

Jitter

Random variation added to retry delays to prevent multiple clients from retrying simultaneously after a shared failure event. Without jitter, all clients using the same exponential backoff schedule retry at the same instant, creating coordinated bursts that can re-trigger the original failure. Full jitter picks a random value between 0 and the calculated backoff, while decorrelated jitter uses a different formula to spread retries more evenly across time.

関連プロトコル

ガイドで言及されています

関連項目