Module mcpu
source code
Module implementing the logic behind the cluster operations
This module implements the logic for doing operations in the cluster.
There are two kinds of classes defined:
-
logical units, which know how to deal with their specific opcode only
-
the processor, which dispatches the opcodes to their logical units
|
_CalculateLockAttemptTimeouts()
Calculate timeouts for lock attempts. |
source code
|
|
|
_LUNameForOpName(opname)
Computes the LU name for a given OpCode name. |
source code
|
|
|
_ComputeDispatchTable()
Computes the opcode-to-lu dispatch table. |
source code
|
|
|
|
|
|
|
|
|
_VerifyLocks(lu,
glm,
_mode_whitelist=_NODE_ALLOC_MODE_WHITELIST,
_nal_whitelist=_NODE_ALLOC_WHITELIST)
Performs consistency checks on locks acquired by a logical unit. |
source code
|
|
|
_OP_PREFIX = "Op"
|
|
_LU_PREFIX = "LU"
|
|
_NODE_ALLOC_WHITELIST = frozenset([])
LU classes which don't need to acquire the node allocation lock (locking.NAL)
when they acquire all node or node resource locks
|
|
_NODE_ALLOC_MODE_WHITELIST = compat.UniqueFrozenset([cmdlib.LU...
LU classes which don't need to acquire the node allocation lock (locking.NAL)
in the same mode (shared/exclusive) as the node or node resource
locks
|
Imports:
sys,
logging,
random,
time,
itertools,
traceback,
opcodes,
constants,
errors,
hooksmaster,
cmdlib,
locking,
utils,
compat
Copies basic opcode parameters.
- Parameters:
src (opcodes.OpCode) - Source opcode
defcomment (string) - Comment to specify if not already given
dst (opcodes.OpCode) - Destination opcode
|
Examines opcode result.
If necessary, additional processing on the result is done.
|
_VerifyLocks(lu,
glm,
_mode_whitelist=_NODE_ALLOC_MODE_WHITELIST,
_nal_whitelist=_NODE_ALLOC_WHITELIST)
| source code
|
Performs consistency checks on locks acquired by a logical unit.
- Parameters:
|
_NODE_ALLOC_MODE_WHITELIST
LU classes which don't need to acquire the node allocation lock (locking.NAL) in
the same mode (shared/exclusive) as the node or node resource locks
- Value:
compat.UniqueFrozenset([cmdlib.LUBackupExport, cmdlib.LUBackupRemove,
cmdlib.LUOobCommand,])
|
|