Back to Tags
Retry
4 items tagged with "retry"
Filter by type:
Patterns3
Pattern
Retry with Backoff
Automatically re-attempts a failed operation after progressively longer waits, smoothing over transient faults without overwhelming a struggling dependency.
Pattern
Exponential Backoff with Jitter
Adds randomness to exponentially growing retry delays so that many clients do not retry in lockstep and overwhelm a recovering service.
Pattern
Idempotency Key
Attaches a unique key to a request so the server can detect and de-duplicate retries, making non-idempotent operations safe to repeat.