Most of the time, when an action fails in the Oozie workflow, you need to debug and fix the error and rerun the workflow. But there are times, when you want Oozie to retry the action after an interval, for fixed number of times before failing the workflow. You can specify the retry-max
and retry-interval
in the action definition.
Examples of User-Retry in a workflow action is :
<workflow-app xmlns="uri:oozie:workflow:0.5" name="wf-name">
<action name="a" retry-max="2" retry-interval="1">
....
</action>
You can find the more information about the User-Retry for Workflow Actions in the link.