class SessionQualificationParams[A <: Parameterized[A]] extends AnyRef
A collection of methods for configuring modules which help Finagle determine the health of a session. Some of these act as circuit breakers, instructing the load balancer to choose alternate paths. Effectively these enable your client to maintain higher success rates.
- A
a Stack.Parameterized client to configure
- Alphabetic
- By Inheritance
- SessionQualificationParams
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new SessionQualificationParams(self: Parameterized[A])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def consecutiveFailuresFailureAccrual(nFailures: Int): A
Sets a FailureAccrualPolicy that triggers after
nFailures
consecutive failures.Sets a FailureAccrualPolicy that triggers after
nFailures
consecutive failures.- nFailures
The number of failures to trigger on
- def consecutiveFailuresFailureAccrual(nFailures: Int, backoff: Backoff): A
Sets a FailureAccrualPolicy that triggers after
nFailures
consecutive failures.Sets a FailureAccrualPolicy that triggers after
nFailures
consecutive failures.- nFailures
The number of failures to trigger on
- backoff
The Backoff that should be applied to revival attempts
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def noFailFast: A
Disables the Fail Fast module on this client (default: enabled).
Disables the Fail Fast module on this client (default: enabled).
The Fail Fast module is a Finagle per-session circuit breaker. It marks a host unavailable upon connection failure. The host remains dead until we successfully connect.
- Note
Usually, it's a good idea to disable Fail Fast for server sets with only one host in the load balancer's replica set.
- See also
https://twitter.github.io/finagle/guide/Clients.html#fail-fast https://twitter.github.io/finagle/guide/Clients.html#circuit-breaking FailFastFactory
- def noFailureAccrual: A
Disables the Failure Accrual module on this client (default: enabled).
Disables the Failure Accrual module on this client (default: enabled).
The Failure Accrual module is a Finagle per-request circuit breaker. It marks a host unavailable depending on the used policy. The default setup for the Failure Accrual module is to use a policy based on the number of consecutive failures (default is 5) accompanied by equal jittered backoff producing durations for which a host is marked unavailable.
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def successRateFailureAccrual(successRate: Double, window: Duration, backoff: Backoff): A
Sets a failure accrual policy that triggers when success rate drops under a given value by looking at a moving average over a time window.
Sets a failure accrual policy that triggers when success rate drops under a given value by looking at a moving average over a time window.
The current default policy is success rate based with a cutoff of 80% and a window of 30 seconds.
- successRate
The success rate to trigger on
- window
The time window of the moving average
- backoff
The Backoff that should be applied to revival attempts
- def successRateFailureAccrual(successRate: Double, window: Duration): A
Sets a failure accrual policy that triggers when success rate drops under a given value by looking at a moving average over a time window.
Sets a failure accrual policy that triggers when success rate drops under a given value by looking at a moving average over a time window.
The current default policy is success rate based with a cutoff of 80% and a window of 30 seconds.
- successRate
The success rate to trigger on
- window
The time window of the moving average
- def successRateFailureAccrual(successRate: Double, window: Duration, backoff: Backoff, minRequestThreshold: Int): A
Sets a failure accrual policy that triggers when success rate drops under a given value by looking at a moving average over a time window.
Sets a failure accrual policy that triggers when success rate drops under a given value by looking at a moving average over a time window.
The current default policy is success rate based with a cutoff of 80% and a window of 30 seconds.
- successRate
The success rate to trigger on
- window
The time window of the moving average
- backoff
The Backoff that should be applied to revival attempts
- minRequestThreshold
The minimum number of requests in a window required for failure accrual to trigger
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()