Class CircuitBreakerService
java.lang.Object
org.elasticsearch.common.component.AbstractLifecycleComponent
org.elasticsearch.indices.breaker.CircuitBreakerService
- All Implemented Interfaces:
Closeable
,AutoCloseable
,LifecycleComponent
,org.elasticsearch.core.Releasable
- Direct Known Subclasses:
HierarchyCircuitBreakerService
,NoneCircuitBreakerService
,PreallocatedCircuitBreakerService
Interface for Circuit Breaker services, which provide breakers to classes
that load field data.
-
Field Summary
Fields inherited from class org.elasticsearch.common.component.AbstractLifecycleComponent
lifecycle
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
doClose()
protected void
doStart()
protected void
doStop()
abstract CircuitBreaker
getBreaker(String name)
abstract AllCircuitBreakerStats
stats()
abstract CircuitBreakerStats
Methods inherited from class org.elasticsearch.common.component.AbstractLifecycleComponent
addLifecycleListener, close, lifecycleState, removeLifecycleListener, start, stop
-
Constructor Details
-
CircuitBreakerService
protected CircuitBreakerService()
-
-
Method Details
-
getBreaker
- Returns:
- the breaker that can be used to register estimates against
-
stats
- Returns:
- stats about all breakers
-
stats
- Returns:
- stats about a specific breaker
-
doStart
protected void doStart()- Specified by:
doStart
in classAbstractLifecycleComponent
-
doStop
protected void doStop()- Specified by:
doStop
in classAbstractLifecycleComponent
-
doClose
protected void doClose()- Specified by:
doClose
in classAbstractLifecycleComponent
-