narayana kandukuri
narayana kandukuri

Reputation: 63

how to pass "Data Flow/Data Set" parameters to azure data factory pipeline from Python SDK

From the below link, I understand using Python SDK, we can create Pipeline and run it.

https://learn.microsoft.com/en-us/azure/data-factory/quickstart-create-data-factory-python

But I have tried to pass data flow parameters in parameters={} in create_run function and it is not working. (Looks like it is taking pipeline parameters and not data flow parameters)

Any example/ details would help!!

Upvotes: 0

Views: 843

Answers (1)

Steve Johnson
Steve Johnson

Reputation: 8660

As far as I know, there is no direct way to do this. As a workaround, you can create pipeline parameters then pass them to Data Flow. Something like this:

enter image description here

Upvotes: 1

Related Questions