Uses of Class
org.elasticsearch.indices.breaker.CircuitBreakerService
-
-
Uses of CircuitBreakerService in org.elasticsearch.action
Constructors in org.elasticsearch.action with parameters of type CircuitBreakerService Constructor Description ActionModule(boolean transportClient, Settings settings, IndexNameExpressionResolver indexNameExpressionResolver, IndexScopedSettings indexScopedSettings, ClusterSettings clusterSettings, SettingsFilter settingsFilter, ThreadPool threadPool, List<ActionPlugin> actionPlugins, NodeClient nodeClient, CircuitBreakerService circuitBreakerService, UsageService usageService, ClusterService clusterService) -
Uses of CircuitBreakerService in org.elasticsearch.common.network
Constructors in org.elasticsearch.common.network with parameters of type CircuitBreakerService Constructor Description NetworkModule(Settings settings, boolean transportClient, List<NetworkPlugin> plugins, ThreadPool threadPool, BigArrays bigArrays, PageCacheRecycler pageCacheRecycler, CircuitBreakerService circuitBreakerService, NamedWriteableRegistry namedWriteableRegistry, NamedXContentRegistry xContentRegistry, NetworkService networkService, HttpServerTransport.Dispatcher dispatcher)Creates a network module that custom networking classes can be plugged into. -
Uses of CircuitBreakerService in org.elasticsearch.common.util
Methods in org.elasticsearch.common.util that return CircuitBreakerService Modifier and Type Method Description CircuitBreakerServiceBigArrays. breakerService()Constructors in org.elasticsearch.common.util with parameters of type CircuitBreakerService Constructor Description BigArrays(PageCacheRecycler recycler, CircuitBreakerService breakerService, String breakerName)BigArrays(PageCacheRecycler recycler, CircuitBreakerService breakerService, String breakerName, boolean checkBreaker) -
Uses of CircuitBreakerService in org.elasticsearch.index
Methods in org.elasticsearch.index with parameters of type CircuitBreakerService Modifier and Type Method Description IndexServiceIndexModule. newIndexService(IndexService.IndexCreationContext indexCreationContext, NodeEnvironment environment, NamedXContentRegistry xContentRegistry, IndexService.ShardStoreDeleter shardStoreDeleter, CircuitBreakerService circuitBreakerService, BigArrays bigArrays, ThreadPool threadPool, ScriptService scriptService, ClusterService clusterService, Client client, IndicesQueryCache indicesQueryCache, MapperRegistry mapperRegistry, IndicesFieldDataCache indicesFieldDataCache, NamedWriteableRegistry namedWriteableRegistry) -
Uses of CircuitBreakerService in org.elasticsearch.index.engine
Methods in org.elasticsearch.index.engine that return CircuitBreakerService Modifier and Type Method Description CircuitBreakerServiceEngineConfig. getCircuitBreakerService()Returns the circuit breaker service for this engine, ornullif none is to be used.Constructors in org.elasticsearch.index.engine with parameters of type CircuitBreakerService Constructor Description EngineConfig(ShardId shardId, String allocationId, ThreadPool threadPool, IndexSettings indexSettings, Engine.Warmer warmer, Store store, MergePolicy mergePolicy, Analyzer analyzer, Similarity similarity, CodecService codecService, Engine.EventListener eventListener, QueryCache queryCache, QueryCachingPolicy queryCachingPolicy, TranslogConfig translogConfig, TimeValue flushMergesAfter, List<ReferenceManager.RefreshListener> externalRefreshListener, List<ReferenceManager.RefreshListener> internalRefreshListener, Sort indexSort, CircuitBreakerService circuitBreakerService, LongSupplier globalCheckpointSupplier, Supplier<RetentionLeases> retentionLeasesSupplier, LongSupplier primaryTermSupplier, EngineConfig.TombstoneDocSupplier tombstoneDocSupplier)Creates a newEngineConfig -
Uses of CircuitBreakerService in org.elasticsearch.index.fielddata
Methods in org.elasticsearch.index.fielddata with parameters of type CircuitBreakerService Modifier and Type Method Description IndexFieldData<?>IndexFieldData.Builder. build(IndexSettings indexSettings, MappedFieldType fieldType, IndexFieldDataCache cache, CircuitBreakerService breakerService, MapperService mapperService)Constructors in org.elasticsearch.index.fielddata with parameters of type CircuitBreakerService Constructor Description IndexFieldDataService(IndexSettings indexSettings, IndicesFieldDataCache indicesFieldDataCache, CircuitBreakerService circuitBreakerService, MapperService mapperService) -
Uses of CircuitBreakerService in org.elasticsearch.index.fielddata.ordinals
Methods in org.elasticsearch.index.fielddata.ordinals with parameters of type CircuitBreakerService Modifier and Type Method Description static IndexOrdinalsFieldDataGlobalOrdinalsBuilder. build(IndexReader indexReader, IndexOrdinalsFieldData indexFieldData, IndexSettings indexSettings, CircuitBreakerService breakerService, org.apache.logging.log4j.Logger logger, Function<SortedSetDocValues,ScriptDocValues<?>> scriptFunction)Build global ordinals for the providedIndexReader. -
Uses of CircuitBreakerService in org.elasticsearch.index.fielddata.plain
Fields in org.elasticsearch.index.fielddata.plain declared as CircuitBreakerService Modifier and Type Field Description protected CircuitBreakerServiceAbstractIndexOrdinalsFieldData. breakerServiceMethods in org.elasticsearch.index.fielddata.plain with parameters of type CircuitBreakerService Modifier and Type Method Description IndexFieldData<?>AbstractLatLonPointDVIndexFieldData.Builder. build(IndexSettings indexSettings, MappedFieldType fieldType, IndexFieldDataCache cache, CircuitBreakerService breakerService, MapperService mapperService)IndexFieldData<?>BytesBinaryDVIndexFieldData.Builder. build(IndexSettings indexSettings, MappedFieldType fieldType, IndexFieldDataCache cache, CircuitBreakerService breakerService, MapperService mapperService)IndexFieldData<?>ConstantIndexFieldData.Builder. build(IndexSettings indexSettings, MappedFieldType fieldType, IndexFieldDataCache cache, CircuitBreakerService breakerService, MapperService mapperService)IndexFieldData<?>DocValuesIndexFieldData.Builder. build(IndexSettings indexSettings, MappedFieldType fieldType, IndexFieldDataCache cache, CircuitBreakerService breakerService, MapperService mapperService)IndexOrdinalsFieldDataPagedBytesIndexFieldData.Builder. build(IndexSettings indexSettings, MappedFieldType fieldType, IndexFieldDataCache cache, CircuitBreakerService breakerService, MapperService mapperService)Constructors in org.elasticsearch.index.fielddata.plain with parameters of type CircuitBreakerService Constructor Description AbstractIndexOrdinalsFieldData(IndexSettings indexSettings, String fieldName, IndexFieldDataCache cache, CircuitBreakerService breakerService, double minFrequency, double maxFrequency, int minSegmentSize)PagedBytesIndexFieldData(IndexSettings indexSettings, String fieldName, IndexFieldDataCache cache, CircuitBreakerService breakerService, double minFrequency, double maxFrequency, int minSegmentSize)SortedSetDVOrdinalsIndexFieldData(IndexSettings indexSettings, IndexFieldDataCache cache, String fieldName, CircuitBreakerService breakerService, Function<SortedSetDocValues,ScriptDocValues<?>> scriptFunction) -
Uses of CircuitBreakerService in org.elasticsearch.index.shard
Constructors in org.elasticsearch.index.shard with parameters of type CircuitBreakerService Constructor Description IndexShard(ShardRouting shardRouting, IndexSettings indexSettings, ShardPath path, Store store, Supplier<Sort> indexSortSupplier, IndexCache indexCache, MapperService mapperService, SimilarityService similarityService, EngineFactory engineFactory, IndexEventListener indexEventListener, CheckedFunction<DirectoryReader,DirectoryReader,IOException> indexReaderWrapper, ThreadPool threadPool, BigArrays bigArrays, Engine.Warmer warmer, List<SearchOperationListener> searchOperationListener, List<IndexingOperationListener> listeners, Runnable globalCheckpointSyncer, RetentionLeaseSyncer retentionLeaseSyncer, CircuitBreakerService circuitBreakerService) -
Uses of CircuitBreakerService in org.elasticsearch.indices
Methods in org.elasticsearch.indices that return CircuitBreakerService Modifier and Type Method Description CircuitBreakerServiceIndicesService. getCircuitBreakerService()Constructors in org.elasticsearch.indices with parameters of type CircuitBreakerService Constructor Description IndicesService(Settings settings, PluginsService pluginsService, NodeEnvironment nodeEnv, NamedXContentRegistry xContentRegistry, AnalysisRegistry analysisRegistry, IndexNameExpressionResolver indexNameExpressionResolver, MapperRegistry mapperRegistry, NamedWriteableRegistry namedWriteableRegistry, ThreadPool threadPool, IndexScopedSettings indexScopedSettings, CircuitBreakerService circuitBreakerService, BigArrays bigArrays, ScriptService scriptService, ClusterService clusterService, Client client, MetaStateService metaStateService, Collection<Function<IndexSettings,Optional<EngineFactory>>> engineFactoryProviders, Map<String,IndexStorePlugin.DirectoryFactory> directoryFactories) -
Uses of CircuitBreakerService in org.elasticsearch.indices.breaker
Subclasses of CircuitBreakerService in org.elasticsearch.indices.breaker Modifier and Type Class Description classHierarchyCircuitBreakerServiceCircuitBreakerService that attempts to redistribute space between breakers if trippedclassNoneCircuitBreakerServiceClass that returns a breaker that never breaks -
Uses of CircuitBreakerService in org.elasticsearch.node
Methods in org.elasticsearch.node that return CircuitBreakerService Modifier and Type Method Description static CircuitBreakerServiceNode. createCircuitBreakerService(Settings settings, ClusterSettings clusterSettings)Creates a newCircuitBreakerServicebased on the settings provided. -
Uses of CircuitBreakerService in org.elasticsearch.plugins
Methods in org.elasticsearch.plugins with parameters of type CircuitBreakerService Modifier and Type Method Description default Map<String,Supplier<HttpServerTransport>>NetworkPlugin. getHttpTransports(Settings settings, ThreadPool threadPool, BigArrays bigArrays, PageCacheRecycler pageCacheRecycler, CircuitBreakerService circuitBreakerService, NamedXContentRegistry xContentRegistry, NetworkService networkService, HttpServerTransport.Dispatcher dispatcher)Returns a map ofHttpServerTransportsuppliers.default Map<String,Supplier<Transport>>NetworkPlugin. getTransports(Settings settings, ThreadPool threadPool, PageCacheRecycler pageCacheRecycler, CircuitBreakerService circuitBreakerService, NamedWriteableRegistry namedWriteableRegistry, NetworkService networkService)Returns a map ofTransportsuppliers. -
Uses of CircuitBreakerService in org.elasticsearch.rest
Constructors in org.elasticsearch.rest with parameters of type CircuitBreakerService Constructor Description RestController(Set<String> headersToCopy, UnaryOperator<RestHandler> handlerWrapper, NodeClient client, CircuitBreakerService circuitBreakerService, UsageService usageService) -
Uses of CircuitBreakerService in org.elasticsearch.transport
Constructors in org.elasticsearch.transport with parameters of type CircuitBreakerService Constructor Description TcpTransport(Settings settings, Version version, ThreadPool threadPool, PageCacheRecycler pageCacheRecycler, CircuitBreakerService circuitBreakerService, NamedWriteableRegistry namedWriteableRegistry, NetworkService networkService)
-