Cluster Locks
Only one cluster lock can be taken at a time.
If a cluster lock is taken, it will block any database locks from being taken.
Any blocked operations will queue.
Example:
ADD LEAF
is running on the cluster. While the operation is running,CREATE TABLE
tries to run, but is blocked untilADD LEAF
completes.