Forum Discussion
Rerun from failed activity inside conditional block - Azure Data Factory
AkshayPusatkar You can achieve the desired behavior of rerunning only the failed activity and skipping the previously successful ones.
Kindly navigate to the Monitor section in the ADF user interface.
Select the pipeline run that contains the failed activity (in your case, Activity C).
Click on View activity runs under the Action column.
Choose the specific activity (Activity C) that failed.
Click the Rerun from the activity option.
This will rerun the failed activity and any subsequent activities that have not been executed. The previously successful activities (A and B) will be skipped during this Rerun.
Note: If you’re using a tumbling window trigger, retry capabilities are built into ADF and Synapse. Head over to your trigger’s configuration page and set the Retry policy: count and Retry policy: interval in seconds properties according to your preferences.
You can read Gaurav Malhotra blogpost on https://azure.microsoft.com/en-us/blog/rerun-activities-inside-your-data-factory-pipelines/?WT.mc_id=%3Fwt.mc_id%3Dstudentamb_357518
and also Pragmatic Works training video on https://www.youtube.com/watch?v=uXiJL2vQ7CY
--
If this post is helpful, please give my respond a like thumbs up! Or Mark it as the solution to help others find it easily.
Thanks