Adding locks and a queue in case the same domains receive another NOTIFY when the first processing is not yet completed #3
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
An important part of parallel-processing are locks for access on the same ressource.
There are 2 basic approaches to this:
Cancel the current processing and start the new one
This could be favoured, because the new job is more up-to-date and could/should include some of the current processing steps too
Let the current one finish and put the new one in a queue.
This is potentially alot cleaner, but will increase timing significantly.