
Explanation:
A. Schedule Trigger
B. Tumbling Window Trigger ✓
C. Storage Event Trigger
D. Custom Event Trigger
The tumbling window trigger's stateful nature ensures that after a restart, it calculates the next appropriate execution time based on the original schedule. This prevents immediate execution upon restart and maintains the intended daily 2 AM cadence. The trigger "remembers" its position in the execution sequence and resumes accordingly.
While schedule triggers work well for simple recurring patterns, they lack the state persistence needed for the restart requirement. A restarted schedule trigger would execute immediately rather than waiting for the next 2 AM slot, potentially causing unwanted executions and disrupting the daily schedule.
Configure the tumbling window trigger with:
Ultimate access to all questions.
You have an Azure Data Factory pipeline named pipeline1 that must execute daily at 2 AM. The solution must guarantee that if the trigger is stopped and later restarted, the next pipeline execution will occur at the next scheduled 2 AM time.
Which trigger type should you use?
A
schedule
B
tumbling
C
storage event
D
custom event
No comments yet.