Class GlobalTxTable
The transaction state is stored in TxState
, and that is stored in a replicated cache. The TxState
must be updated before performing any action in the transaction (prepare, commit, etc.).
In addition, since we don't have a client crash notification, it performs a reaper work, periodically, that cleanups idle transactions. The transaction is considered idle based on the timeout sent by the client. If no decision is made, it rollbacks the transaction. If the transaction is completed (committed or rolled-back), it is removed from the cache. If the transaction is decided (i.e. marked for commit or rollback), it completes the transaction.
Note that, recoverable transactions (transactions originated from FULL_XA support caches) aren't touched by the reaper. The recovery process is responsible to handle them.
- Since:
- 9.4
- Author:
- Pedro Ruivo
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
forgetTransaction
(XidImpl xid) boolean
isEmpty()
void
markToCommit
(XidImpl xid, CacheNameCollector collector) void
markToRollback
(XidImpl xid, CacheNameCollector collector) void
void
run()
periodically checks for idle transactions and rollbacks them.void
start()
Invoked on component startvoid
stop()
Invoked on component stopupdate
(CacheXid key, TxFunction function, long timeoutMillis)
-
Constructor Details
-
GlobalTxTable
-
-
Method Details
-
start
public void start()Description copied from interface:Lifecycle
Invoked on component start -
stop
public void stop()Description copied from interface:Lifecycle
Invoked on component stop -
update
-
markToCommit
-
markToRollback
-
getState
-
remove
-
forgetTransaction
-
run
public void run()periodically checks for idle transactions and rollbacks them. -
getPreparedTransactions
-
isEmpty
public boolean isEmpty()
-