flow concurrency clarification
Hello !
I need clarification about concurrency.
I have a flow with multiple scripts. This flow is scheduled every 30 minutes.
I don't want a second flow to trigger if there's an execution in progress. The flow can sometimes last longer than 30 minutes...
How do I configure it to wait for the flow to complete before launching the second one if the first one exceeds 30 minutes?
What is the time window in the concurrency limit?
4 Replies
use a window of 0 and concurrency limit of 1
time window is a window after or buffer to calculate concurrency overlap
Thanks for your quick response.
If I set a window to zero, and the flow (which is scheduled every 30 minutes) runs in 40 minutes, does that mean the second flow will start automatically at the end of the first stream ?
yes
Ok thank you Ruben. Regards.