Expand description
统一指数退避(全 workspace 唯一实现)
供 Supervisor 重启退避、Proxy 熔断器恢复退避等场景复用:
exponential_backoff:纯函数确定性退避(可测试、可重放)exponential_backoff_with_jitter:全抖动(Full Jitter)变体, 避免多客户端同步重试造成的惊群(thundering herd)
全部 saturating 算术,禁止溢出回绕。
Functions§
- exponential_
backoff - 计算指数退避(毫秒):
base * multiplier^exponent,封顶cap - exponential_
backoff_ with_ jitter - 计算带全抖动的指数退避(毫秒):
[0, exponential_backoff]均匀随机