ITHelpGuy
ITHelpGuy

Reputation: 1037

How to sequence pipeline execution trigger in Azure Data Factory

I am working on a migration project where I have a few SQL Server Integration Service projects that will be moved to Azure Data Factory. While I go through this we have a few jobs scheduled via SQL Server Agent which has multiple steps. If were to replicate the same using Azure Data Factory triggers is there a way to group multiple pipelines together and sequence the execution accordingly like we have multiple job steps in SQL Server Agents.

For instance:

  1. Load all of the lookup tables
  2. Load all of the staging tables
  3. Load all of the dimension tables
  4. Load Fact table

Please guide in the right direction.

Upvotes: 0

Views: 1241

Answers (1)

David Browne - Microsoft
David Browne - Microsoft

Reputation: 88851

You can use the Execute Pipeline Activity to build a master pipeline that runs your other pipelines. eg

enter image description here

Upvotes: 1

Related Questions