Orchestrate
.procfwk

Logo

A cross tenant metadata driven processing framework for Azure Data Factory and Azure Synapse Analytics achieved by coupling orchestration pipelines with a SQL database and a set of Azure Functions.


- Overview
- Contents


View the Project on GitHub mrpaulandrew/procfwk

Cancel Pipeline


« Contents / Functions


Role

To make a recursive cancel request against to the target worker pipeline and orchestrator type.

While the pipeline is in a ‘cancelling’ state the function will wait and return only once a ‘cancelled’ state has been achieved.

Note; Microsoft side typo’s mean ‘canceling’ may also appear in the logging outputs.

Namespace: mrpaulandrew.azure.procfwk.

Method

POST

Body Request

{
"tenantId": "123-123-123-123-1234567",
"applicationId": "123-123-123-123-1234567",
"authenticationKey": "Passw0rd123!",
"subscriptionId": "123-123-123-123-1234567",
"resourceGroupName": "ADF.procfwk",
"orchestratorName": "FrameworkFactory",
"orchestratorType": "ADF",
"pipelineName": "Intentional Error",
"runId": "123-123-123-123-1234567"
}

Return

See Services return classes.

Example Output

{
"PipelineName": "Wait 1",
"RunId": "c5c2e1e7-bdc8-4eec-b015-cd1aa498b0a4",
"ActualStatus": "Cancelled",
"SimpleStatus": "Complete"
}