Learn Before
Formula

Exponential Backoff with Jitter

delay = min(base * 2^attempt, cap) * (0.5 + random()/2). The jitter matters more than the exponent when many agent instances retry at once, because synchronised retries reproduce exactly the overload that caused the failure.

0

1

Updated 2026-08-21

Tags

Building AI Agents Course

Computing Sciences