iMajna
iMajna

Reputation: 499

Use Azure Functions as custom activity in ADFv2

Is it possible to somehow package and execute already written azure function as a custom activity in azure data factory?

My workflow is next:

I want to use azure function (which is doing some data processing) in ADF pipeline as a custom activity. This custom activity is just one of the activities in pipeline but its key to be executed.

Upvotes: 1

Views: 431

Answers (1)

Jay Gong
Jay Gong

Reputation: 23782

Is it possible to somehow package and execute already written azure function as a custom activity in azure data factory?

As I know, there is no way to do that so far. In my opinion, you do not need to package the Azure Function. I suggest you using Web Activity to invoke the endpoint of your Azure Function which could merge into previous pipeline nicely.

Upvotes: 4

Related Questions