有人可以帮我从 azure 数据工厂执行 python 函数吗?我已经在 blob 中存储了 python 函数,我正在尝试触发它。但是我做不到。请协助。
其次,我可以参数化来自 ADF 的 python 函数调用吗?
有人可以帮我从 azure 数据工厂执行 python 函数吗?我已经在 blob 中存储了 python 函数,我正在尝试触发它。但是我做不到。请协助。
其次,我可以参数化来自 ADF 的 python 函数调用吗?
您可以了解 ADF 中的Azure Function Activity,它允许您在数据工厂管道中运行 Azure Functions。
您可以将您的 python 函数复制到Python Azure Function中。
另外,它想将参数传递给python函数,你可以将它们设置为body属性。
Azure Function Activity 支持路由。例如,如果您的应用程序使用以下路由 -https://functionAPP.azurewebsites.net/api/functionName/{value}?code=<secret>
那么 functionName 是functionName/{value}
,您可以对其进行参数化以functionName
在运行时提供所需的。