Skip to main content

Exponential backoff

Make uses exponential backoff to automatically schedule scenario reruns with increasing time delays. The scenario reruns trigger when a module in the scenario outputs:

The time delays between the scenario reruns are:

  • 1 minute

  • 2 minutes

  • 5 minutes

  • 10 minutes

  • 1 hour

  • 3 hours

  • 12 hours

  • 24 hours

This means that when a module in your scenario outputs the ConnectionError because the third-party service is unavailable, Make schedules the rerunning of the scenario one minute after the error occurs.

If a module during the rerun outputs the ConnectionError again, Make schedules another rerun after 2 minutes and so on. If the 8th attempt fails, Make disables scheduling of the scenario.

Note

Until Make disables scheduling the scenario, the scenario follows the run schedule in addition to the exponential backoff reruns.

If you want Make to wait with scheduling the next scenario runs until the reruns finish, enable sequential processing in scenario settings.

Note

If you enable the option to store incomplete executions in the scenario settings, Make stores the scenario run in incomplete executions.

Make then schedules scenario reruns from the incomplete execution data. If all rerun attempts fail, Make keeps the scenario incomplete execution for you to resolve manually.