full jitter
RU: full jitter
A retry backoff strategy where the delay before each attempt is drawn uniformly at random from zero to the current exponential cap: sleep = random(0, min(cap, base * 2^attempt)). Named and popularized by the AWS architecture team, it spreads retrying clients across time, eliminating thundering-herd spikes on overloaded services.