Package org.apache.ignite.lang
Class ErrorGroups.Transactions
java.lang.Object
org.apache.ignite.lang.ErrorGroups.Transactions
- Enclosing class:
- ErrorGroups
Transactions error group.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final int
Failed to acquire a lock on a key due to a conflict.static final int
Failed to acquire a lock on a key within a timeout.static final int
Operation failed because the transaction is already finished.static final int
Operation failed because the transaction is already finished with timeout.static final int
Failed to commit a transaction.static final ErrorGroup
Transactions error group.static final int
Failed to enlist read-write operation into read-only transaction.static final int
Failure due to an incompatible schema change.static final int
Failure due to primary replica expiration.static final int
Error occurred when trying to create a read-only transaction with a timestamp older than the data available in the tables.static final int
Failed to rollback a transaction.static final int
Failure due to a stale operation of a completed transaction is detected.static final int
Error occurred when trying to execute an operation in a read-only transaction on a node that has already destroyed data for read timestamp of the transaction.static final int
Error of tx state storage.static final int
Tx state storage rebalancing error.static final int
Tx state storage is stopped.static final int
Error of unexpected tx state on state change. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
TX_ERR_GROUP
Transactions error group. -
TX_STATE_STORAGE_ERR
public static final int TX_STATE_STORAGE_ERRError of tx state storage. -
TX_STATE_STORAGE_STOPPED_ERR
public static final int TX_STATE_STORAGE_STOPPED_ERRTx state storage is stopped. -
TX_UNEXPECTED_STATE_ERR
public static final int TX_UNEXPECTED_STATE_ERRError of unexpected tx state on state change. -
ACQUIRE_LOCK_ERR
public static final int ACQUIRE_LOCK_ERRFailed to acquire a lock on a key due to a conflict. -
ACQUIRE_LOCK_TIMEOUT_ERR
public static final int ACQUIRE_LOCK_TIMEOUT_ERRFailed to acquire a lock on a key within a timeout. -
TX_COMMIT_ERR
public static final int TX_COMMIT_ERRFailed to commit a transaction. -
TX_ROLLBACK_ERR
public static final int TX_ROLLBACK_ERRFailed to rollback a transaction. -
TX_FAILED_READ_WRITE_OPERATION_ERR
public static final int TX_FAILED_READ_WRITE_OPERATION_ERRFailed to enlist read-write operation into read-only transaction. -
TX_STATE_STORAGE_REBALANCE_ERR
public static final int TX_STATE_STORAGE_REBALANCE_ERRTx state storage rebalancing error. -
TX_READ_ONLY_TOO_OLD_ERR
public static final int TX_READ_ONLY_TOO_OLD_ERRError occurred when trying to create a read-only transaction with a timestamp older than the data available in the tables. -
TX_INCOMPATIBLE_SCHEMA_ERR
public static final int TX_INCOMPATIBLE_SCHEMA_ERRFailure due to an incompatible schema change. -
TX_PRIMARY_REPLICA_EXPIRED_ERR
public static final int TX_PRIMARY_REPLICA_EXPIRED_ERRFailure due to primary replica expiration. -
TX_ALREADY_FINISHED_ERR
public static final int TX_ALREADY_FINISHED_ERROperation failed because the transaction is already finished. -
TX_STALE_OPERATION_ERR
public static final int TX_STALE_OPERATION_ERRFailure due to a stale operation of a completed transaction is detected. -
TX_STALE_READ_ONLY_OPERATION_ERR
public static final int TX_STALE_READ_ONLY_OPERATION_ERRError occurred when trying to execute an operation in a read-only transaction on a node that has already destroyed data for read timestamp of the transaction. -
TX_ALREADY_FINISHED_WITH_TIMEOUT_ERR
public static final int TX_ALREADY_FINISHED_WITH_TIMEOUT_ERROperation failed because the transaction is already finished with timeout.
-
-
Constructor Details
-
Transactions
public Transactions()
-