Class TransactionConfiguration

    • 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()
      • syncCommitPhase

        @Deprecated
        public boolean syncCommitPhase()
        Deprecated.
        since 9.0. no longer supported
        If true, the cluster-wide commit phase in two-phase commit (2PC) transactions will be synchronous, so Infinispan will wait for responses from all nodes to which the commit was sent. Otherwise, the commit phase will be asynchronous. Keeping it as false improves performance of 2PC transactions, but it can lead to inconsistencies when the primary owner releases the lock before the backup commits the change.
      • syncCommitPhase

        @Deprecated
        public TransactionConfiguration syncCommitPhase​(boolean b)
        Deprecated.
        The syncRollbackPhase setting can no longer be modified at runtime. It must be the same on all nodes.
        If true, the cluster-wide commit phase in two-phase commit (2PC) transactions will be synchronous, so Infinispan will wait for responses from all nodes to which the commit was sent. Otherwise, the commit phase will be asynchronous. Keeping it as false improves performance of 2PC transactions, but it can lead to inconsistencies when the primary owner releases the lock before the backup commits the change.
      • syncRollbackPhase

        @Deprecated
        public boolean syncRollbackPhase()
        Deprecated.
        since 9.0. no longer supported
        If true, the cluster-wide rollback phase in two-phase commit (2PC) transactions will be synchronous, so Infinispan will wait for responses from all nodes to which the rollback was sent. Otherwise, the rollback phase will be asynchronous. Keeping it as false improves performance of 2PC transactions.
      • syncRollbackPhase

        @Deprecated
        public TransactionConfiguration syncRollbackPhase​(boolean b)
        Deprecated.
        The syncRollbackPhase setting can no longer be modified at runtime. It must be the same on all nodes.
        If true, the cluster-wide rollback phase in two-phase commit (2PC) transactions will be synchronous, so Infinispan will wait for responses from all nodes to which the rollback was sent.
      • 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.
      • useSynchronization

        public boolean useSynchronization()
      • 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

        public TransactionProtocol transactionProtocol()
        Returns:
        the transaction protocol in use (2PC or Total Order)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object