adf completed - notification

arkiboys 9,641 Reputation points
2022-03-25T09:57:29.31+00:00

Hi,
How is it possible on completion of the adf job, to notify a separate program (an angular program for example) that the data is ready or something like that?
Thank you

Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
9,599 questions
{count} vote

Accepted answer
  1. Pratik Somaiya 4,201 Reputation points
    2022-03-25T10:06:01.607+00:00

    Hello @arkiboys

    You can use a Web Activity to signal the program that the ADF is completed and the program can start its execution

    You can place the Web Activity on succeed output of an ADF activity and when the activity succeeds it will then trigger Logic app and will execute your code

    Your custom code can be published to an App Service and can be used inside a Logic App

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Samy Abdul 3,366 Reputation points
    2022-03-25T10:20:29.233+00:00

    Hi @arkiboys , the other alternative approach is to use Azure functions(preferably durable functions) and REST API call to get the completion status

    /notification and call Azure functions in Angular.

    https://stackoverflow.com/questions/64783286/call-azure-functions-api-from-angular-static-web-page-frontend-with-azure-active Thanks

    0 comments No comments