decorrelated jitter
RU: decorrelated jitter
A retry-backoff strategy in which each wait interval is chosen uniformly at random between a base value and three times the previous sleep, expressed as sleep = min(cap, random(base, prev_sleep * 3)). Unlike full jitter, the next interval depends on the last, breaking lockstep retries across clients more aggressively while keeping waits bounded.