クラスターを起動し、次の 3 つのステップを追加したとします。
Now, if Step1
has ActionOnFailure as CANCEL_AND_WAIT
, then in the event on failure of Step1
, it would cancel all the remaining steps and the cluster will get into a Waiting
status. And I guess if you laucng your cluster with --stay-alive
option then this is the default behaviour.
if Step1
has ActionOnFailure as CONTINUE
, then in the event on failure of Step1
, it would continue with the execution of Step2
.
if Step1
has ActionOnFailure as TERMINATE_JOB_FLOW
, then in the event on failure of Step1
, it would shut down the cluster as you mentioned.