Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable activity in Azure Data factory pipeline without removing it

So I am testing each of the activities of the pipeline and I want to disable some of the activities in it. Essentially there is an activity of sending emails which I want to disable as I wanted to see the output of prior activities.

Offcourse I dont want to remove the email sending activity because it is in the prod environment and not developed by me.

Is there any way to disable it?

like image 276
Gagan Avatar asked May 09 '18 00:05

Gagan


People also ask

Can we disable activity in Azure data Factory?

You cannot disable one, but what you want to do is possible with the debug option in the editor. Just click on the red circle above any activity and run the debugger, it will run until that activity is complete and stop, allowing you to see the output of those prior to that. Hope this helped!

How do I disable triggers in ADF?

Set the "wait on completion" flag in the Execute Pipeline activity. Add a Web activity connected to the Execute Pipeline by an on-failure dependancy. The Web activity will call the Data Factory REST API to disable the trigger.


1 Answers

You cannot disable one, but what you want to do is possible with the debug option in the editor. Just click on the red circle above any activity and run the debugger, it will run until that activity is complete and stop, allowing you to see the output of those prior to that.

Hope this helped!

like image 140
Martin Esteban Zurita Avatar answered Sep 19 '22 20:09

Martin Esteban Zurita