A.3. About Consistency Guarantee
Despite the locking of a single owner instead of all owners, JBoss Data Grid's consistency guarantee remains intact. The consistency guarantee is as follows:
- If Key
K
is hashed to nodes{A,B}
and transactionTX1
acquires a lock forK
on, for example, nodeA
. - If another cache access occurs on node
B
, or any other node, andTX2
attempts to lockK
, it fails with a timeout because the transactionTX1
already holds a lock onK
.
This lock acquisition attempt always fails because the lock for key
K
is always deterministically acquired on the same node of the cluster, irrespective of the transaction's origin.