Reputation: 909
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
Reputation: 2363
If you are using tumbling window trigger, you could set the maxConcurrency to 1.
Upvotes: 1