Class TransactionConfiguration
- java.lang.Object
-
- org.infinispan.configuration.cache.TransactionConfiguration
-
- All Implemented Interfaces:
Matchable<TransactionConfiguration>
,BaseConfigurationInfo
,ConfigurationInfo
public class TransactionConfiguration extends java.lang.Object implements Matchable<TransactionConfiguration>, ConfigurationInfo
Defines transactional (JTA) characteristics of the cache.- Author:
- pmuir, Pedro Ruivo
-
-
Field Summary
Fields Modifier and Type Field Description static AttributeDefinition<java.lang.Boolean>
AUTO_COMMIT
static AttributeDefinition<java.lang.Long>
CACHE_STOP_TIMEOUT
static AttributeDefinition<java.lang.Long>
COMPLETED_TX_TIMEOUT
static ElementDefinition
ELEMENT_DEFINTION
static AttributeDefinition<LockingMode>
LOCKING_MODE
static AttributeDefinition<java.lang.Boolean>
NOTIFICATIONS
static AttributeDefinition<java.lang.Long>
REAPER_WAKE_UP_INTERVAL
static AttributeDefinition<TransactionManagerLookup>
TRANSACTION_MANAGER_LOOKUP
static AttributeDefinition<TransactionMode>
TRANSACTION_MODE
static AttributeDefinition<TransactionProtocol>
TRANSACTION_PROTOCOL
static AttributeDefinition<TransactionSynchronizationRegistryLookup>
TRANSACTION_SYNCHRONIZATION_REGISTRY_LOOKUP
static AttributeDefinition<java.lang.Boolean>
USE_1_PC_FOR_AUTO_COMMIT_TRANSACTIONS
static AttributeDefinition<java.lang.Boolean>
USE_SYNCHRONIZATION
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description AttributeSet
attributes()
boolean
autoCommit()
If the cache is transactional (i.e.long
cacheStopTimeout()
If there are any ongoing transactions when a cache is stopped, Infinispan waits for ongoing remote and local transactions to finish.TransactionConfiguration
cacheStopTimeout(long l)
If there are any ongoing transactions when a cache is stopped, Infinispan waits for ongoing remote and local transactions to finish.long
completedTxTimeout()
boolean
equals(java.lang.Object obj)
ElementDefinition
getElementDefinition()
int
hashCode()
LockingMode
lockingMode()
Configures whether the cache uses optimistic or pessimistic locking.TransactionConfiguration
lockingMode(LockingMode lockingMode)
Configures whether the cache uses optimistic or pessimistic locking.boolean
matches(TransactionConfiguration other)
boolean
notifications()
long
reaperWakeUpInterval()
RecoveryConfiguration
recovery()
This method allows configuration of the transaction recovery cache.java.util.List<ConfigurationInfo>
subElements()
java.lang.String
toString()
TransactionManagerLookup
transactionManagerLookup()
Configure Transaction manager lookup directly using an instance of TransactionManagerLookup.TransactionMode
transactionMode()
TransactionProtocol
transactionProtocol()
Deprecated.since 10.0.TransactionSynchronizationRegistryLookup
transactionSynchronizationRegistryLookup()
Configure Transaction Synchronization Registry lookup directly using an instance of TransactionManagerLookup.boolean
use1PcForAutoCommitTransactions()
Before Infinispan 5.1 you could access the cache both transactionally and non-transactionally.boolean
useSynchronization()
-
-
-
Field Detail
-
AUTO_COMMIT
public static final AttributeDefinition<java.lang.Boolean> AUTO_COMMIT
-
CACHE_STOP_TIMEOUT
public static final AttributeDefinition<java.lang.Long> CACHE_STOP_TIMEOUT
-
LOCKING_MODE
public static final AttributeDefinition<LockingMode> LOCKING_MODE
-
TRANSACTION_MANAGER_LOOKUP
public static final AttributeDefinition<TransactionManagerLookup> TRANSACTION_MANAGER_LOOKUP
-
TRANSACTION_SYNCHRONIZATION_REGISTRY_LOOKUP
public static final AttributeDefinition<TransactionSynchronizationRegistryLookup> TRANSACTION_SYNCHRONIZATION_REGISTRY_LOOKUP
-
TRANSACTION_MODE
public static final AttributeDefinition<TransactionMode> TRANSACTION_MODE
-
USE_SYNCHRONIZATION
public static final AttributeDefinition<java.lang.Boolean> USE_SYNCHRONIZATION
-
USE_1_PC_FOR_AUTO_COMMIT_TRANSACTIONS
public static final AttributeDefinition<java.lang.Boolean> USE_1_PC_FOR_AUTO_COMMIT_TRANSACTIONS
-
REAPER_WAKE_UP_INTERVAL
public static final AttributeDefinition<java.lang.Long> REAPER_WAKE_UP_INTERVAL
-
COMPLETED_TX_TIMEOUT
public static final AttributeDefinition<java.lang.Long> COMPLETED_TX_TIMEOUT
-
TRANSACTION_PROTOCOL
public static final AttributeDefinition<TransactionProtocol> TRANSACTION_PROTOCOL
-
NOTIFICATIONS
public static final AttributeDefinition<java.lang.Boolean> NOTIFICATIONS
-
ELEMENT_DEFINTION
public static final ElementDefinition ELEMENT_DEFINTION
-
-
Method Detail
-
autoCommit
public boolean autoCommit()
If the cache is transactional (i.e.transactionMode()
== TransactionMode.TRANSACTIONAL) and transactionAutoCommit is enabled then for single operation transactions the user doesn't need to manually start a transaction, but a transactions is injected by the system. Defaults to true.
-
cacheStopTimeout
public TransactionConfiguration cacheStopTimeout(long l)
If there are any ongoing transactions when a cache is stopped, Infinispan waits for ongoing remote and local transactions to finish. The amount of time to wait for is defined by the cache stop timeout. It is recommended that this value does not exceed the transaction timeout because even if a new transaction was started just before the cache was stopped, this could only last as long as the transaction timeout allows it.
-
cacheStopTimeout
public long cacheStopTimeout()
If there are any ongoing transactions when a cache is stopped, Infinispan waits for ongoing remote and local transactions to finish. The amount of time to wait for is defined by the cache stop timeout. It is recommended that this value does not exceed the transaction timeout because even if a new transaction was started just before the cache was stopped, this could only last as long as the transaction timeout allows it.
-
lockingMode
public LockingMode lockingMode()
Configures whether the cache uses optimistic or pessimistic locking. If the cache is not transactional then the locking mode is ignored.- See Also:
transactionMode()
-
lockingMode
public TransactionConfiguration lockingMode(LockingMode lockingMode)
Configures whether the cache uses optimistic or pessimistic locking. If the cache is not transactional then the locking mode is ignored.- See Also:
transactionMode()
-
transactionManagerLookup
public TransactionManagerLookup transactionManagerLookup()
Configure Transaction manager lookup directly using an instance of TransactionManagerLookup. Calling this method marks the cache as transactional.
-
transactionSynchronizationRegistryLookup
public TransactionSynchronizationRegistryLookup transactionSynchronizationRegistryLookup()
Configure Transaction Synchronization Registry lookup directly using an instance of TransactionManagerLookup. Calling this method marks the cache as transactional.
-
transactionMode
public TransactionMode transactionMode()
-
useSynchronization
public boolean useSynchronization()
-
recovery
public RecoveryConfiguration recovery()
This method allows configuration of the transaction recovery cache. When this method is called, it automatically enables recovery. So, if you want it to be disabled, make sure you callRecoveryConfigurationBuilder.enabled(boolean)
with false as parameter
-
reaperWakeUpInterval
public long reaperWakeUpInterval()
-
completedTxTimeout
public long completedTxTimeout()
-
use1PcForAutoCommitTransactions
public boolean use1PcForAutoCommitTransactions()
Before Infinispan 5.1 you could access the cache both transactionally and non-transactionally. Naturally the non-transactional access is faster and offers less consistency guarantees. From Infinispan 5.1 onwards, mixed access is no longer supported, so if you wanna speed up transactional caches and you're ready to trade some consistency guarantees, you can enable use1PcForAutoCommitTransactions. What this configuration option does is force an induced transaction, that has been started by Infinispan as a result of enabling autoCommit, to commit in a single phase. So only 1 RPC instead of 2RPCs as in the case of a full 2 Phase Commit (2PC). N.B. this option should NOT be used when modifying the same key from multiple transactions as 1PC does not offer any consistency guarantees under concurrent access.
-
transactionProtocol
@Deprecated public TransactionProtocol transactionProtocol()
Deprecated.since 10.0. Total Order will be removed.- Returns:
- the transaction protocol in use (2PC or Total Order)
-
notifications
public boolean notifications()
- Returns:
- are transactional notifications (
TransactionRegistered
andTransactionCompleted
) triggered?
-
attributes
public AttributeSet attributes()
- Specified by:
attributes
in interfaceBaseConfigurationInfo
- Returns:
- the
AttributeSet
declared by the configuration.
-
getElementDefinition
public ElementDefinition getElementDefinition()
- Specified by:
getElementDefinition
in interfaceBaseConfigurationInfo
- Returns:
- the
ElementDefinition
of the configuration.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
subElements
public java.util.List<ConfigurationInfo> subElements()
- Specified by:
subElements
in interfaceConfigurationInfo
- Returns:
- the list of sub elements.
-
matches
public boolean matches(TransactionConfiguration other)
- Specified by:
matches
in interfaceMatchable<TransactionConfiguration>
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-