Andy Leonard continues a series on design patterns:
In this post, I clone and modify the dynamic parent pipeline from the previous post to retrieve metadata from an Azure SQL database table for several child pipelines, and then call each child pipeline from a parent pipeline.
When we’re done, this pipeline will:
- Read pipeline metadata from a table in an Azure SQL database
- Store some of the metadata (a collection of pipelineID values) in the (existing) pipelineIdArray variable
- Iterate the pipelineIdArray variable’s collection of pipelineID values
- Execute each child pipeline represented by each pipelineID value stored in the pipelineIdArray variable
Read on to learn how.