Search code examples
pythonazureazure-data-factoryazure-sdk-python

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!!


Solution

  • 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