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. You can only
cancel steps that are in a PENDING
state.
emr_cancel_steps(ClusterId, StepIds, StepCancellationOption)
A list with the following syntax:
list(
CancelStepsInfoList = list(
list(
StepId = "string",
Status = "SUBMITTED"|"FAILED",
Reason = "string"
)
)
)
[required] The ClusterID
for the specified steps that will be canceled. Use
run_job_flow
and
list_clusters
to get ClusterIDs.
[required] The list of StepIDs
to cancel. Use list_steps
to
get steps and their states for the specified cluster.
The option to choose to cancel RUNNING
steps. By default, the value is
SEND_INTERRUPT
.
svc$cancel_steps(
ClusterId = "string",
StepIds = list(
"string"
),
StepCancellationOption = "SEND_INTERRUPT"|"TERMINATE_PROCESS"
)