class FailureAccrualFactory[Req, Rep] extends ServiceFactory[Req, Rep]
A com.twitter.finagle.ServiceFactory that accrues failures, marking
itself unavailable when deemed unhealthy according to the configured policy
.
This acts as a request driven circuit breaker.
Note this module fails open – that is, even if it transitions into a closed state, requests will still be allowed to flow through it. Although, when used in a typical Finagle client, there is one instance of this module per node and as such, the load balancer will avoid nodes where the status is not open.
- Self Type
- FailureAccrualFactory[Req, Rep]
- See also
The user guide for more details.
- Alphabetic
- By Inheritance
- FailureAccrualFactory
- ServiceFactory
- Closable
- Function1
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new FailureAccrualFactory(underlying: ServiceFactory[Req, Rep], policy: FailureAccrualPolicy, responseClassifier: ResponseClassifier, timer: Timer, statsReceiver: StatsReceiver)
- responseClassifier
used to determine which request/response pairs are successful or not.
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
- def andThen[A](g: (Future[Service[Req, Rep]]) => A): (ClientConnection) => A
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- def apply(conn: ClientConnection): Future[Service[Req, Rep]]
Reserve the use of the returned Service instance.
Reserve the use of the returned Service instance.
To relinquish the use of the reserved Service, the user must call Service.close().
- conn
will be ClientConnection.nil when called on the client-side.
- Definition Classes
- FailureAccrualFactory → ServiceFactory → Function1
- final def apply(): Future[Service[Req, Rep]]
Reserve the use of the returned Service instance using ClientConnection.nil.
Reserve the use of the returned Service instance using ClientConnection.nil.
To relinquish the use of the reserved Service, the user must call Service.close().
- Definition Classes
- ServiceFactory
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def classify(reqRep: ReqRep): ResponseClass
- Attributes
- protected
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def close(deadline: Time): Future[Unit]
- Definition Classes
- FailureAccrualFactory → Closable
- def close(after: Duration): Future[Unit]
- Definition Classes
- Closable
- final def close(): Future[Unit]
- Definition Classes
- Closable
- def compose[A](g: (A) => ClientConnection): (A) => Future[Service[Req, Rep]]
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- def didMarkDead(duration: Duration): Unit
Called by FailureAccrualFactory after marking an endpoint dead.
Called by FailureAccrualFactory after marking an endpoint dead. Override this method to perform additional actions.
- Attributes
- protected
- def didSucceed(): Unit
- Attributes
- protected
- 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])
- def flatMap[Req1, Rep1](f: (Service[Req, Rep]) => Future[Service[Req1, Rep1]]): ServiceFactory[Req1, Rep1]
Apply
f
on created services, returning the resulting Future in their stead.Apply
f
on created services, returning the resulting Future in their stead. This is useful for implementing common factory wrappers that only need to modify or operate on the underlying service.- Definition Classes
- ServiceFactory
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def getState: State
- Attributes
- protected[this]
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isAvailable: Boolean
Return
true
if and only if status is currently Status.Open.Return
true
if and only if status is currently Status.Open.- Definition Classes
- ServiceFactory
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def map[Req1, Rep1](f: (Service[Req, Rep]) => Service[Req1, Rep1]): ServiceFactory[Req1, Rep1]
Map created services.
Map created services. Useful for implementing common styles of factory wrappers.
- Definition Classes
- ServiceFactory
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def startProbing(): Unit
Enter 'Probing' state.
Enter 'Probing' state. The service must satisfy one request before accepting more.
- Attributes
- protected
- def status: Status
The current availability Status of this ServiceFactory
The current availability Status of this ServiceFactory
- Definition Classes
- FailureAccrualFactory → ServiceFactory
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- final def toService: Service[Req, Rep]
Make a service that after dispatching a request on that service, releases the service.
Make a service that after dispatching a request on that service, releases the service.
- Definition Classes
- ServiceFactory
- def toString(): String
- Definition Classes
- FailureAccrualFactory → ServiceFactory → Function1 → 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()