Exponential backoff: delay = base × 2^attempt. Without jitter, all clients retry at the same time → stampede. Jitter (random ±50%) spreads retries.
Standard pattern: every long-lived connection client. AWS SDK, retry libraries, browsers all use it.