AWS Step Function Retires | Retry With Jitter
1
In the Exponential Backoff And Jitter aws architecture blog article it discusses the importance of having jitter as part of your retry functionality. I am currently using the baked in retry functionality with the "BackoffRate" parameter for "exponential backoff" that step functions provides. However, as far as I can tell jitter is not implemented out of the box as part of that option. Is there a way to get this functionality from the as-is step functions implementation?
asked 5 months ago22 views
1 Answers
Relevant questions
Step Function Retry Metrics
asked 3 months agoHub & Spoke architecture with AWS Control Tower
asked 4 days agoGlue Throttling Exception when starting > 15 Glue jobs in Parallel via Step Function
Accepted Answerasked 5 months agoAWS Glue retry a job after an execution error
Accepted Answerasked a month agoThrottlingException when requesting Appstream streaming urls
asked 3 months agoAWS Step Function Output for container services
asked 5 days agoCan Glue bookmarks be used between Glue workflow steps?
Accepted Answerasked 3 years agoAWS Step Function Retires | Retry With Jitter
asked 5 months agoWhen does an Async lambda retry?
asked a month agoStep Function to Send Email on Error/Success
asked 4 months ago
Hi Roi thanks for your answer! Unfortunately that only controls the "exponential backoff" portion that is discussed in the architecture blog article. It does not control the "jitter" portion of the article which is what my question was geared towards. I will modify the question so it is more clear.