
Azure CancelJob
CertifiedCancel an Azure Machine Learning job
Azure CancelJob
Cancel an Azure Machine Learning job
Requests cancellation of a running job. Cancellation is asynchronous in Azure ML: the job can sit in CANCEL_REQUESTED for minutes, so by default this task polls until the job actually reaches a terminal state before returning. Cancelling an already-terminal job is treated as a no-op, not a failure.
type: io.kestra.plugin.azure.ml.CancelJobExamples
id: azure_ml_cancel_job
namespace: company.team
inputs:
- id: job_name
type: STRING
tasks:
- id: cancel_job
type: io.kestra.plugin.azure.ml.CancelJob
tenantId: "{{ secret('AZURE_TENANT_ID') }}"
clientId: "{{ secret('AZURE_CLIENT_ID') }}"
clientSecret: "{{ secret('AZURE_CLIENT_SECRET') }}"
subscriptionId: "{{ secret('AZURE_SUBSCRIPTION_ID') }}"
resourceGroupName: ml-rg
workspaceName: ml-workspace
jobName: "{{ inputs.job_name }}"
Properties
jobName *Requiredstring
Job name
Name of the Azure Machine Learning job to cancel
resourceGroupName *Requiredstring
Resource group name
Resource group containing the Machine Learning workspace
subscriptionId *Requiredstring
Subscription ID
Azure subscription GUID that owns the Machine Learning workspace
tenantId *Requiredstring
Azure AD tenant ID (GUID)
workspaceName *Requiredstring
Workspace name
Name of the Azure Machine Learning workspace
checkFrequency Non-dynamic
{
"maxDuration": "PT1H",
"interval": "PT10S"
}Polling frequency
Interval and max duration used when wait=true
io.kestra.plugin.azure.ml.SubmitCommandJob-CheckFrequency
PT10SPolling interval
Delay between status checks; defaults to PT10S. Azure ML jobs run for minutes to hours, so a tighter interval only adds needless ARM API calls
PT1HMax wait duration
Stop polling and fail after this duration; defaults to PT1H
clientId string
Client ID of the Azure AD application
Application (client) ID used for service principal authentication.
clientSecret string
Client secret for the Azure AD application
Secret value associated with the client ID; store in a Kestra secret.
pemCertificate string
PEM-encoded certificate content for client authentication
PEM text for certificate-based auth; alternative to clientSecret.
wait booleanstring
trueWait for the job to reach a terminal state
If true (default), polls until the job is actually cancelled instead of returning as soon as cancellation is requested
Outputs
jobName string
Job name
status string
NOT_STARTEDSTARTINGPROVISIONINGPREPARINGQUEUEDRUNNINGFINALIZINGCANCEL_REQUESTEDCOMPLETEDFAILEDCANCELEDNOT_RESPONDINGPAUSEDUNKNOWNJob status
Job status after the cancellation request