arpan desai
arpan desai

Reputation: 909

New instance of pipeline is triggered when first is running in case of hourly schedule Azure data factory v2

We have pipeline scheduled to run every hour. Sometimes the pipeline takes more than an hour to complete.

Currently, another instance of the pipeline starts in the next one hour resulting in 2 instances of the pipeline running in parallel.

How do we avoid this? How to make the next schedule to wait until the prior schedule completes (like SQL Server job agent)?

Upvotes: 0

Views: 246

Answers (1)

Fang Liu
Fang Liu

Reputation: 2363

If you are using tumbling window trigger, you could set the maxConcurrency to 1.

Upvotes: 1

Related Questions