Search code examples
azure-data-factory

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?


Solution

  • 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!