Execute python scripts in Azure DataFactory

Mighty picture Mighty · Sep 11, 2018 · Viewed 11.1k times · Source

I have my data stored in blobs and I have written a python script to do some computations and create another csv. How can I execute this in Azure Data Factory ?

Answer

Jay Gong picture Jay Gong · Sep 11, 2018

Mighty. You could use Azure Data Factory V2 custom activity for your requirements. You can directly execute a command to invoke python script using Custom Activity.

Please refer to this sample on the github.

Hope it helps you.