Controls what happens when a workflow would be started by a schedule but one is already running.
Constant | ALLOW |
Start any number of concurrent workflows. |
Constant | BUFFER |
Buffer up any number of starts to all happen sequentially, immediately after the running workflow completes. |
Constant | BUFFER |
Start the workflow again soon as the current one completes, but only buffer one start in this way. |
Constant | CANCEL |
If there is another workflow running, cancel it, and start the new one after the old one completes cancellation. |
Constant | SKIP |
Don't start anything. |
Constant | TERMINATE |
If there is another workflow running, terminate it and start the new one immediately. |
Start any number of concurrent workflows.
Note that with this policy, last completion result and last failure will not be available since workflows are not sequential.
Value |
|
Buffer up any number of starts to all happen sequentially, immediately after the running workflow completes.
Value |
|
Start the workflow again soon as the current one completes, but only buffer one start in this way.
If another start is supposed to happen when the workflow is running, and one is already buffered, then only the first one will be started after the running workflow finishes.
Value |
|
If there is another workflow running, cancel it, and start the new one after the old one completes cancellation.
Value |
|
Don't start anything.
When the workflow completes, the next scheduled event after that time will be considered.
Value |
|