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

Check Pipeline Status


« Contents / Functions


Role

Queries the target worker pipeline and orchestrator type for the status of the pipeline run. Returning the actual pipline status and a simplified status for internal use.

Namespace: mrpaulandrew.azure.procfwk.

Method

GET, POST

Example Input

{
"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": "Intentional Error",
"RunId": "c5c2e1e7-bdc8-4eec-b015-cd1aa498b0a4",
"ActualStatus": "Failed",
"SimpleStatus": "Complete"
}