This repository has been archived by the owner on Dec 13, 2023. It is now read-only.
Replies: 2 comments 1 reply
-
Graphical representation of the retry behavior |
Beta Was this translation helpful? Give feedback.
0 replies
-
Updating the thread on the status of the PR: #2699 is merged. Thanks @apanicker-nflx |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Retry has support for two different backoff methods:
n
number of seconds (i is not accounted for).n* (2^i)
number of seconds.I would like to add a BACKOFF method that sits between
FIXED
andEXPONENTIAL
and name it asLINEAR_BACKOFF
. With this backoff method, every retry will be performed with a delay ofn * (s*i)
number of seconds.A new configuration parameter is added to be able to control the slope of the line.
Given, this is requires simple change and does not effect any other feature (or default configurations etc.), a PR (#2699) was already raised.
cc: @aravindanr @apanicker-nflx @kishorebanala
Beta Was this translation helpful? Give feedback.
All reactions