How to use output of Azure Data Factory Web Activity in next copy activity?

Viewed 4309

I have a ADF Web activity from which I'm getting metadata as an output. I want to copy this metadata into Azure Postgres DB. How to use the Web activity output as an source to the next copy activity?

1 Answers

Accoding to this answer. I think we can use two Web activities to store the output of your first Web activity.

Use @activity('Web1').output.Response expression at second web activity to save the output as a blob to the container. Then we can use Copy activity to copy this blob into Azure Postgres DB.

enter image description here

Since I do not have permission to set role permissions, I did not test this. I think this solution is feasible.

Related