Andy Leonard continues a series on Fabric Data Factory design patterns:
In an earlier post titled Fabric Data Factory Design Pattern – Basic Parent-Child, I demonstrated one way to build a basic parent-child design pattern in Fabric Data Factory by calling one pipeline (child) from another pipeline (parent). In a later earlier post titled Fabric Data Factory Design Pattern – Parent-Child with Parameters, I modified the parent and child pipelines to demonstrate passing a parameter value from a parent pipeline when calling a child pipeline that contains a parameter.
In this post, I modify a parent pipeline to explore parameterizing which child pipeline will be called by the parent pipeline. In this post, we will:
- Copy the child pipeline id
- Clone a parent pipeline
- Add and configure a pipeline variable for the child pipeline id
- Test the dynamic pipeline id
Read on to see how.