Cancel Steps
| emr_cancel_steps | R Documentation |
Cancels a pending step or steps in a running cluster¶
Description¶
Cancels a pending step or steps in a running cluster. Available only in
Amazon EMR versions 4.8.0 and later, excluding version 5.0.0. A maximum
of 256 steps are allowed in each CancelSteps request. CancelSteps is
idempotent but asynchronous; it does not guarantee that a step will be
canceled, even if the request is successfully submitted. When you use
Amazon EMR releases 5.28.0 and later, you can cancel steps that are in a
PENDING or RUNNING state. In earlier versions of Amazon EMR, you can
only cancel steps that are in a PENDING state.
Usage¶
Arguments¶
ClusterId[required] The
ClusterIDfor the specified steps that will be canceled. Userun_job_flowandlist_clustersto get ClusterIDs.StepIds[required] The list of
StepIDsto cancel. Uselist_stepsto get steps and their states for the specified cluster.StepCancellationOptionThe option to choose to cancel
RUNNINGsteps. By default, the value isSEND_INTERRUPT.
Value¶
A list with the following syntax:
list(
CancelStepsInfoList = list(
list(
StepId = "string",
Status = "SUBMITTED"|"FAILED",
Reason = "string"
)
)
)