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

Azure Data Factory Service


« Contents / Functions / Services


Key Name Spaces

Clients

DataFactoryManagementClient

Methods:

CreateDataFactoryClient

Returns: Microsoft.Azure.Management.DataFactory.DataFactoryManagementClient

Role: this helper is used by the execute pipeline, check pipeline status and get error details function to authenticate against the target worker data factory at runtime before invoking pipeline operation requests.

Exmaple Use:

using (var client = DataFactoryClient.CreateDataFactoryClient(tenantId, applicationId, 
    authenticationKey, subscriptionId))
{
    PipelineRun pipelineRun;

    pipelineRun = client.PipelineRuns.Get(resourceGroup, factoryName, runResponse.RunId);
}