Uses of Class
org.elasticsearch.index.IndexService
-
Packages that use IndexService Package Description org.elasticsearch.action.admin.indices.analyze org.elasticsearch.index org.elasticsearch.index.shard org.elasticsearch.indices -
-
Uses of IndexService in org.elasticsearch.action.admin.indices.analyze
Methods in org.elasticsearch.action.admin.indices.analyze with parameters of type IndexService Modifier and Type Method Description static AnalyzeAction.ResponseTransportAnalyzeAction. analyze(AnalyzeAction.Request request, AnalysisRegistry analysisRegistry, IndexService indexService, int maxTokenCount) -
Uses of IndexService in org.elasticsearch.index
Methods in org.elasticsearch.index that return IndexService 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)Method parameters in org.elasticsearch.index with type arguments of type IndexService Modifier and Type Method Description voidIndexModule. setReaderWrapper(Function<IndexService,CheckedFunction<DirectoryReader,DirectoryReader,IOException>> indexReaderWrapperFactory)Sets the factory for creating newDirectoryReaderwrapper instances. -
Uses of IndexService in org.elasticsearch.index.shard
Methods in org.elasticsearch.index.shard with parameters of type IndexService Modifier and Type Method Description default voidIndexEventListener. afterIndexCreated(IndexService indexService)Called after the index has been created.default voidIndexEventListener. beforeIndexRemoved(IndexService indexService, IndicesClusterStateService.AllocatedIndices.IndexRemovalReason reason)Called before the index get closed. -
Uses of IndexService in org.elasticsearch.indices
Methods in org.elasticsearch.indices that return IndexService Modifier and Type Method Description IndexServiceIndicesService. createIndex(IndexMetaData indexMetaData, List<IndexEventListener> builtInListeners)Creates a newIndexServicefor the given metadata.IndexServiceIndicesService. indexService(Index index)Returns an IndexService for the specified index if exists otherwise returnsnull.IndexServiceIndicesService. indexServiceSafe(Index index)Returns an IndexService for the specified index if exists otherwise aIndexNotFoundExceptionis thrown.Methods in org.elasticsearch.indices that return types with arguments of type IndexService Modifier and Type Method Description Iterator<IndexService>IndicesService. iterator()
-