To pass the output of a Lookup activity to a Dataflow activity in an Azure Data Factory (ADF) pipeline, you can use a WildcardPath parameter in the source dataset for the Dataflow activity.
Here's an example of how you might do this:
- In your ADF pipeline, add a Lookup activity that retrieves the data you want to pass to the Dataflow activity.
- In the Dataflow activity, create a source dataset that specifies the WildcardPath parameter. The WildcardPath parameter allows you to specify a file or folder path using wildcard characters (e.g., "*.csv").
- In the Dataflow activity's source dataset, set the WildcardPath parameter to the output of the Lookup activity. You can use the @activity('lookupActivityName').output syntax to reference the output of the Lookup activity in the WildcardPath parameter.
- Run the ADF pipeline. The Dataflow activity will use the output of the Lookup activity as the source data, with the WildcardPath parameter specifying the specific file or folder path.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
or upvote
button whenever the information provided helps you. Original posters help the community find answers faster by identifying the correct answer. Here is