Uses of Class
org.elasticsearch.index.mapper.MapperService
-
-
Uses of MapperService in org.elasticsearch.index
Methods in org.elasticsearch.index that return MapperService Modifier and Type Method Description MapperServiceIndexService. mapperService()MapperServiceIndexModule. newIndexMapperService(NamedXContentRegistry xContentRegistry, MapperRegistry mapperRegistry, ScriptService scriptService)creates a new mapper service to do administrative work like mapping updates. -
Uses of MapperService in org.elasticsearch.index.codec
Constructors in org.elasticsearch.index.codec with parameters of type MapperService Constructor Description CodecService(MapperService mapperService, org.apache.logging.log4j.Logger logger)PerFieldMappingPostingFormatCodec(Lucene50StoredFieldsFormat.Mode compressionMode, MapperService mapperService, org.apache.logging.log4j.Logger logger) -
Uses of MapperService in org.elasticsearch.index.engine
Methods in org.elasticsearch.index.engine with parameters of type MapperService Modifier and Type Method Description abstract intEngine. estimateNumberOfHistoryOperations(String reason, Engine.HistorySource historySource, MapperService mapperService, long startingSeqNo)Returns the estimated number of history operations whose seq# at leaststartingSeqNo(inclusive) in this engine.intInternalEngine. estimateNumberOfHistoryOperations(String reason, Engine.HistorySource historySource, MapperService mapperService, long startingSeqNo)Returns the estimated number of history operations whose seq# at least the provided seq# in this engine.intReadOnlyEngine. estimateNumberOfHistoryOperations(String reason, Engine.HistorySource historySource, MapperService mapperService, long startingSeqNo)abstract booleanEngine. hasCompleteOperationHistory(String reason, Engine.HistorySource historySource, MapperService mapperService, long startingSeqNo)Checks if this engine has every operations sincestartingSeqNo(inclusive) in its history (either Lucene or translog)booleanInternalEngine. hasCompleteOperationHistory(String reason, Engine.HistorySource historySource, MapperService mapperService, long startingSeqNo)booleanReadOnlyEngine. hasCompleteOperationHistory(String reason, Engine.HistorySource historySource, MapperService mapperService, long startingSeqNo)abstract Translog.SnapshotEngine. newChangesSnapshot(String source, MapperService mapperService, long fromSeqNo, long toSeqNo, boolean requiredFullRange)Creates a new history snapshot from Lucene for reading operations whose seqno in the requesting seqno range (both inclusive).Translog.SnapshotInternalEngine. newChangesSnapshot(String source, MapperService mapperService, long fromSeqNo, long toSeqNo, boolean requiredFullRange)Translog.SnapshotReadOnlyEngine. newChangesSnapshot(String source, MapperService mapperService, long fromSeqNo, long toSeqNo, boolean requiredFullRange)abstract Translog.SnapshotEngine. readHistoryOperations(String reason, Engine.HistorySource historySource, MapperService mapperService, long startingSeqNo)Creates a new history snapshot for reading operations sincestartingSeqNo(inclusive).Translog.SnapshotInternalEngine. readHistoryOperations(String reason, Engine.HistorySource historySource, MapperService mapperService, long startingSeqNo)Creates a new history snapshot for reading operations since the provided seqno.Translog.SnapshotReadOnlyEngine. readHistoryOperations(String reason, Engine.HistorySource historySource, MapperService mapperService, long startingSeqNo) -
Uses of MapperService in org.elasticsearch.index.fielddata
Methods in org.elasticsearch.index.fielddata with parameters of type MapperService 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 MapperService Constructor Description IndexFieldDataService(IndexSettings indexSettings, IndicesFieldDataCache indicesFieldDataCache, CircuitBreakerService circuitBreakerService, MapperService mapperService) -
Uses of MapperService in org.elasticsearch.index.fielddata.plain
Methods in org.elasticsearch.index.fielddata.plain with parameters of type MapperService 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)Constructor parameters in org.elasticsearch.index.fielddata.plain with type arguments of type MapperService Constructor Description Builder(Function<MapperService,String> valueFunction) -
Uses of MapperService in org.elasticsearch.index.fieldvisitor
Methods in org.elasticsearch.index.fieldvisitor with parameters of type MapperService Modifier and Type Method Description voidFieldsVisitor. postProcess(MapperService mapperService) -
Uses of MapperService in org.elasticsearch.index.get
Constructors in org.elasticsearch.index.get with parameters of type MapperService Constructor Description ShardGetService(IndexSettings indexSettings, IndexShard indexShard, MapperService mapperService) -
Uses of MapperService in org.elasticsearch.index.mapper
Methods in org.elasticsearch.index.mapper that return MapperService Modifier and Type Method Description MapperServiceMapper.TypeParser.ParserContext. mapperService()MapperServiceParseContext.InternalParseContext. mapperService()abstract MapperServiceParseContext. mapperService()Methods in org.elasticsearch.index.mapper with parameters of type MapperService Modifier and Type Method Description DocumentMapperDocumentMapper.Builder. build(MapperService mapperService)ObjectMapperObjectMapper. getParentObjectMapper(MapperService mapperService)Returns the parentObjectMapperinstance of the specified object mapper ornullif there isn't any.booleanObjectMapper. parentObjectMapperAreNested(MapperService mapperService)Returns whether all parent objects fields are nested too.Constructors in org.elasticsearch.index.mapper with parameters of type MapperService Constructor Description Builder(RootObjectMapper.Builder builder, MapperService mapperService)DocumentMapper(MapperService mapperService, Mapping mapping)DocumentMapperParser(IndexSettings indexSettings, MapperService mapperService, NamedXContentRegistry xContentRegistry, SimilarityService similarityService, MapperRegistry mapperRegistry, Supplier<QueryShardContext> queryShardContextSupplier)ParserContext(Function<String,SimilarityProvider> similarityLookupService, MapperService mapperService, Function<String,Mapper.TypeParser> typeParsers, Version indexVersionCreated, Supplier<QueryShardContext> queryShardContextSupplier) -
Uses of MapperService in org.elasticsearch.index.query
Methods in org.elasticsearch.index.query that return MapperService Modifier and Type Method Description MapperServiceQueryShardContext. getMapperService()Return the MapperService.Constructors in org.elasticsearch.index.query with parameters of type MapperService Constructor Description QueryShardContext(int shardId, IndexSettings indexSettings, BigArrays bigArrays, BitsetFilterCache bitsetFilterCache, BiFunction<MappedFieldType,String,IndexFieldData<?>> indexFieldDataLookup, MapperService mapperService, SimilarityService similarityService, ScriptService scriptService, NamedXContentRegistry xContentRegistry, NamedWriteableRegistry namedWriteableRegistry, Client client, IndexSearcher searcher, LongSupplier nowInMillis, String clusterAlias, Predicate<String> indexNameMatcher) -
Uses of MapperService in org.elasticsearch.index.search
Constructors in org.elasticsearch.index.search with parameters of type MapperService Constructor Description NestedHelper(MapperService mapperService) -
Uses of MapperService in org.elasticsearch.index.shard
Methods in org.elasticsearch.index.shard that return MapperService Modifier and Type Method Description MapperServiceIndexShard. mapperService()Constructors in org.elasticsearch.index.shard with parameters of type MapperService 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 MapperService in org.elasticsearch.index.similarity
Methods in org.elasticsearch.index.similarity with parameters of type MapperService Modifier and Type Method Description SimilaritySimilarityService. similarity(MapperService mapperService) -
Uses of MapperService in org.elasticsearch.indices
Methods in org.elasticsearch.indices that return MapperService Modifier and Type Method Description MapperServiceIndicesService. createIndexMapperService(IndexMetaData indexMetaData)creates a new mapper service for the given index, in order to do administrative work like mapping updates. -
Uses of MapperService in org.elasticsearch.repositories
Methods in org.elasticsearch.repositories with parameters of type MapperService Modifier and Type Method Description voidRepository. snapshotShard(Store store, MapperService mapperService, SnapshotId snapshotId, IndexId indexId, IndexCommit snapshotIndexCommit, IndexShardSnapshotStatus snapshotStatus, ActionListener<Void> listener)Creates a snapshot of the shard based on the index commit point. -
Uses of MapperService in org.elasticsearch.repositories.blobstore
Methods in org.elasticsearch.repositories.blobstore with parameters of type MapperService Modifier and Type Method Description voidBlobStoreRepository. snapshotShard(Store store, MapperService mapperService, SnapshotId snapshotId, IndexId indexId, IndexCommit snapshotIndexCommit, IndexShardSnapshotStatus snapshotStatus, ActionListener<Void> listener) -
Uses of MapperService in org.elasticsearch.search.internal
Methods in org.elasticsearch.search.internal that return MapperService Modifier and Type Method Description MapperServiceFilteredSearchContext. mapperService()abstract MapperServiceSearchContext. mapperService() -
Uses of MapperService in org.elasticsearch.search.lookup
Methods in org.elasticsearch.search.lookup that return MapperService Modifier and Type Method Description MapperServiceDocLookup. mapperService()MapperServiceLeafDocLookup. mapperService()Constructors in org.elasticsearch.search.lookup with parameters of type MapperService Constructor Description SearchLookup(MapperService mapperService, Function<MappedFieldType,IndexFieldData<?>> fieldDataLookup, String[] types) -
Uses of MapperService in org.elasticsearch.search.suggest
Methods in org.elasticsearch.search.suggest with parameters of type MapperService Modifier and Type Method Description protected voidSuggestionBuilder. populateCommonFields(MapperService mapperService, SuggestionSearchContext.SuggestionContext suggestionContext)Transfers the text, prefix, regex, analyzer, field, size and shard size settings from the originalSuggestionBuilderto the targetSuggestionSearchContext.SuggestionContext -
Uses of MapperService in org.elasticsearch.search.suggest.phrase
Methods in org.elasticsearch.search.suggest.phrase with parameters of type MapperService Modifier and Type Method Description org.elasticsearch.search.suggest.phrase.PhraseSuggestionContext.DirectCandidateGeneratorDirectCandidateGeneratorBuilder. build(MapperService mapperService)org.elasticsearch.search.suggest.phrase.PhraseSuggestionContext.DirectCandidateGeneratorPhraseSuggestionBuilder.CandidateGenerator. build(MapperService mapperService)
-