c

com.couchbase.client.scala.env

CircuitBreakerConfig

case class CircuitBreakerConfig(enabled: Boolean = core.endpoint.CircuitBreakerConfig.DEFAULT_ENABLED, volumeThreshold: Int = core.endpoint.CircuitBreakerConfig.DEFAULT_VOLUME_THRESHOLD, errorThresholdPercentage: Int = core.endpoint.CircuitBreakerConfig.DEFAULT_ERROR_THRESHOLD_PERCENTAGE, sleepWindow: Duration = core.endpoint.CircuitBreakerConfig.DEFAULT_SLEEP_WINDOW, rollingWindow: Duration = core.endpoint.CircuitBreakerConfig.DEFAULT_ROLLING_WINDOW) extends Product with Serializable

Allows configuring a com.couchbase.client.core.endpoint.CircuitBreaker.

Since

1.0.0

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CircuitBreakerConfig
  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 enabled(enabled: Boolean): CircuitBreakerConfig

    Enables or disables this circuit breaker.

    Enables or disables this circuit breaker.

    If this property is set to false, then all other properties are not looked at.

    enabled

    if true enables it, if false disables it.

    returns

    this for chaining purposes.

  2. def errorThresholdPercentage(errorThresholdPercentage: Int): CircuitBreakerConfig

    The percentage of operations that need to fail in a window until the circuit is opened.

    The percentage of operations that need to fail in a window until the circuit is opened.

    The default is 50.

    errorThresholdPercentage

    the percent of ops that need to fail.

    returns

    this for chaining purposes.

  3. def productElementNames: Iterator[String]
    Definition Classes
    Product
  4. def productIterator: Iterator[Any]
    Definition Classes
    Product
  5. def rollingWindow(rollingWindow: Duration): CircuitBreakerConfig

    How long the window is in which the number of failed ops are tracked in a rolling fashion.

    How long the window is in which the number of failed ops are tracked in a rolling fashion.

    The default is 1 minute.

    rollingWindow

    the rolling window duration.

    returns

    this for chaining purposes.

  6. def sleepWindow(sleepWindow: Duration): CircuitBreakerConfig

    The sleep window that is waited from when the circuit opens to when the canary is tried.

    The sleep window that is waited from when the circuit opens to when the canary is tried.

    The default is 5 seconds.

    sleepWindow

    the sleep window as a duration.

    returns

    this for chaining purposes.

  7. def volumeThreshold(volumeThreshold: Int): CircuitBreakerConfig

    The volume threshold defines how many operations need to be in the window at least so that the threshold percentage can be meaningfully calculated.

    The volume threshold defines how many operations need to be in the window at least so that the threshold percentage can be meaningfully calculated.

    The default is 20.

    volumeThreshold

    the volume threshold in the interval.

    returns

    this for chaining purposes.