Class TransactionsConfig
- java.lang.Object
-
- com.couchbase.client.java.transactions.config.TransactionsConfig
-
public class TransactionsConfig extends Object
Provides all configurable parameters for Couchbase transactions.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TransactionsConfig.Builder
-
Constructor Summary
Constructors Constructor Description TransactionsConfig()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TransactionsConfig.Builder
builder()
static TransactionsConfig.Builder
cleanupConfig(TransactionsCleanupConfig.Builder config)
Configures transaction cleanup.static TransactionsConfig.Builder
durabilityLevel(DurabilityLevel level)
All transaction writes will be performed with this durability setting.static TransactionsConfig.Builder
metadataCollection(TransactionKeyspace collection)
Allows setting a custom collection to use for any transactional metadata documents.static TransactionsConfig.Builder
queryConfig(TransactionsQueryConfig.Builder queryConfig)
Sets the default query configuration for all transactions.static TransactionsConfig.Builder
timeout(Duration timeout)
Sets the maximum time that transactions can run for.
-
-
-
Method Detail
-
builder
public static TransactionsConfig.Builder builder()
-
cleanupConfig
public static TransactionsConfig.Builder cleanupConfig(TransactionsCleanupConfig.Builder config)
Configures transaction cleanup.
-
timeout
public static TransactionsConfig.Builder timeout(Duration timeout)
Sets the maximum time that transactions can run for. The default is 15 seconds. After this time, the transaction will throw aTransactionExpiredException
error.Applications can increase or decrease this as desired. The trade-off to understand is that documents that are being mutated in a transaction A, are effectively locked from being updated by other transactions until transaction A has completed - committed or rolled back. If transaction A is unable to complete for whatever reason, the document can be locked for this
expirationTime
time.It is worth noting that this setting does not completely guarantee that the transaction will immediately be completed after that time. In some rare cases, such as application crashes, it may take longer as the lost transactions cleanup process will be involved.
-
durabilityLevel
public static TransactionsConfig.Builder durabilityLevel(DurabilityLevel level)
All transaction writes will be performed with this durability setting.All writes in Couchbase go initially to one primary node, and from their fan-out to any configured replicas.
If durability is disabled then the transaction will continue as soon as the write is available on the primary node. The durability setting will ensure the transaction does not continue until the write is available in more places. This can provide a small degree of extra security in the advent of node loss.
The default setting is DurabilityLevel.MAJORITY, meaning a transaction will pause on each write until it is available in-memory on a majority of configured replicas.
-
metadataCollection
public static TransactionsConfig.Builder metadataCollection(TransactionKeyspace collection)
Allows setting a custom collection to use for any transactional metadata documents.If not set, it will default to creating these documents in the default collection of the bucket that the first mutated document in the transaction is on.
This collection will be added to the set of collections being cleaned up.
-
queryConfig
public static TransactionsConfig.Builder queryConfig(TransactionsQueryConfig.Builder queryConfig)
Sets the default query configuration for all transactions.- Parameters:
queryConfig
- the query configuration to use- Returns:
- this, for chaining
-
-