At the end of my ADF, I would like to notify external application that ADF has completed and files are loaded into data-lake.
I am thinking of using a web activity as the last activity in ADF. The web activity perhaps can call a url which accepts two parameters
param1 --> dataName
param2 --> status
param1 is when the ADF tells the url which loadName is sending a message about
param2 is when ADF tells url that the loadName was success or failure.
perhaps the url calls the necessary external application specific to the success of the loadName
1- Am I on the right track?
2- Is this the simplest way to let other external apps that ADF has completed the task?
Thank you