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
you indicate:
"BackoffRate is the number of seconds Step Functions will add to each IntervalSeconds on each subsequent retry beyond the first. This means that Step Functions will wait 30 seconds before the first retry, 40 seconds before the second, and 50 seconds before the third. Including service call backoff (and, specifically, exponential backoff) is a best practice when designing resilient systems."
but AWS indicates
"BackoffRate (Optional)
The multiplier by which the retry interval increases during each attempt (2.0 by default)."
Hi Brian,
I was looking at your article (https://brianklaas.net/aws/coldfusion/2019/05/31/Using-AWS-Step-Functions-In-CFML-Part-10.html) and found a wee inconsistency.
you indicate:
"BackoffRate is the number of seconds Step Functions will add to each IntervalSeconds on each subsequent retry beyond the first. This means that Step Functions will wait 30 seconds before the first retry, 40 seconds before the second, and 50 seconds before the third. Including service call backoff (and, specifically, exponential backoff) is a best practice when designing resilient systems."
but AWS indicates
"BackoffRate (Optional)
The multiplier by which the retry interval increases during each attempt (2.0 by default)."
So, for you example:
This will retry after 30s, then after 300s and then it will timeout as it is more than the 15 minutes limit.
The text was updated successfully, but these errors were encountered: