You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current backoff algorithm is 0.3 * (2 ** (retry - 1)) * 1000 that does not suit for all. E.g. I may like to change some coefficient or add a random jitter (see AWS Exponential Backoff And Jitter). Solution may be simple - just allow custom function to calculate the delay.
The text was updated successfully, but these errors were encountered:
xmedeko
changed the title
Parametrize retry backoff algorithm
Customize retry backoff algorithm
Oct 26, 2021
Current backoff algorithm is
0.3 * (2 ** (retry - 1)) * 1000
that does not suit for all. E.g. I may like to change some coefficient or add a random jitter (see AWS Exponential Backoff And Jitter). Solution may be simple - just allow custom function to calculate the delay.The text was updated successfully, but these errors were encountered: