exponential backoff
RU: exponential backoff
A retry strategy where the wait time before each successive attempt doubles (or grows by a fixed multiplier): 1 s, 2 s, 4 s, 8 s, ... up to a configured maximum. Adding random jitter prevents synchronized retry storms across clients. Used for transient network errors, rate-limit responses (HTTP 429), and distributed-system reconnects.