Packages

c

com.couchbase.client.scala.transactions.config

TransactionsCleanupConfig

case class TransactionsCleanupConfig extends Product with Serializable

Provides all configurable parameters for Couchbase transactions cleanup.

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TransactionsCleanupConfig
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def cleanupClientAttempts(cleanupClientAttempts: Boolean): TransactionsCleanupConfig

    Controls where a background thread is created to cleanup any transaction attempts made by this client.

    Controls where a background thread is created to cleanup any transaction attempts made by this client.

    The default is true and users should generally not change this: cleanup is an essential part of Couchbase transactions.

  2. def cleanupLostAttempts(cleanupLostAttempts: Boolean): TransactionsCleanupConfig

    Controls where a background process is created to cleanup any 'lost' transaction attempts.

    Controls where a background process is created to cleanup any 'lost' transaction attempts.

    The default is true and users should generally not change this: cleanup is an essential part of Couchbase transactions.

  3. def cleanupWindow(cleanupWindow: Duration): TransactionsCleanupConfig

    Part of the lost attempts background cleanup process.

    Part of the lost attempts background cleanup process. Specifies the window during which the cleanup process is sure to discover all lost transactions.

    The default setting of 60 seconds is tuned to balance how quickly such transactions are discovered, while minimising impact on the cluster. If the application would prefer to discover lost transactions more swiftly, but at the cost of increased impact, it can feel free to reduce this parameter.

  4. def collections(collections: Set[TransactionKeyspace]): TransactionsCleanupConfig

    Adds collections to the set of metadata collections that will be cleaned up automatically.

    Adds collections to the set of metadata collections that will be cleaned up automatically.

    Collections will be added automatically to this 'cleanup set' as transactions are performed, so generally an application will not need to change this.

    Setting this parameter will also start cleanup immediately rather than on the first transaction.

  5. def productElementNames: Iterator[String]
    Definition Classes
    Product