Reputation: 39
I have requirement like . I have pipeline it contains 6 activities. I need to trigger the pipeline at 6 AM & 8 PM. At 6 AM I need to trigger the first 3 activities and next 3 activities I need to run at 8 PM.
Note: 6 activates in one pipeline.
Upvotes: 0
Views: 636
Reputation: 1806
What AbhishekKhandave-MT called out is accurate . In the worst case scneario you can always clone the existing pipeline and then you will have two pipeline , keep and choose activities what you want and then schedule them accordingly .
In case you do not want to use the above suggestion , you can always use an IF actvity to check the time add the activites inside , I agree it will be very messy that way .
Upvotes: 1
Reputation: 3240
Trigger in Azure Data Factory are associated with Pipeline only. You can not run individual activities using trigger. Once you run pipeline, all activities in it will get executed.
Types of Trigger:
Schedule trigger
Tumbling window
Storage events
Custom events
Upvotes: 1