Package org.elasticsearch.index.mapper
Class MapperService
java.lang.Object
org.elasticsearch.index.AbstractIndexComponent
org.elasticsearch.index.mapper.MapperService
- All Implemented Interfaces:
Closeable,AutoCloseable,IndexComponent
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classThe reason why a mapping is being merged. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic Stringstatic booleanDeprecated.Deprecated.static StringFields inherited from class org.elasticsearch.index.AbstractIndexComponent
indexSettings, logger -
Constructor Summary
ConstructorsConstructorDescriptionMapperService(IndexSettings indexSettings, IndexAnalyzers indexAnalyzers, org.elasticsearch.common.xcontent.NamedXContentRegistry xContentRegistry, SimilarityService similarityService, MapperRegistry mapperRegistry, Supplier<SearchExecutionContext> searchExecutionContextSupplier, BooleanSupplier idFieldDataEnabled, ScriptCompiler scriptCompiler) -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Return the document mapper, ornullif no mapping has been put yet or no documents have been indexed in the current index yet (which triggers a dynamic mapping update)documentMapper(String type)Return theDocumentMapperfor the given type.Exposes aDocumentParserGiven the full name of a field, returns itsMappedFieldType.Returns all mapped field types.getNamedAnalyzer(String analyzerName)getTypeForUpdate(String type, CompressedXContent mappingSource)If the _type name is _doc and there is no _doc top-level key then this means that we are handling a typeless call.booleanindexAnalyzer(String field, Function<String,NamedAnalyzer> unindexedFieldAnalyzer)Return the index-time analyzer associated with a particular fieldstatic booleanisMappingSourceTyped(String type, Map<String,Object> mapping)Returnstrueif the givenmappingSourceincludes a type as a top-level object.static booleanisMappingSourceTyped(String type, CompressedXContent mappingSource)booleanisMetadataField(String field)Exposes a snapshot of the mappings for the current index.voidmerge(String type, CompressedXContent mappingSource, MapperService.MergeReason reason)voidvoidmerge(IndexMetadata indexMetadata, MapperService.MergeReason reason)static MappingmergeMappings(DocumentMapper currentMapper, Mapping incomingMapping, MapperService.MergeReason reason)parseMapping(String type, CompressedXContent mappingSource, boolean applyDefault)parseMapping(org.elasticsearch.common.xcontent.NamedXContentRegistry xContentRegistry, String mappingSource)Parses the mappings (formatted as JSON) into a mapreloadSearchAnalyzers(AnalysisRegistry registry)resolveDocumentType(String type)Resolves a type from a mapping-related request into the type that should be used when merging and updating mappings.voidupdateMapping(IndexMetadata currentIndexMetadata, IndexMetadata newIndexMetadata)Update local mapping by applying the incoming mapping that have already been merged with the current one on the masterMethods inherited from class org.elasticsearch.index.AbstractIndexComponent
getIndexSettings, index
-
Field Details
-
DEFAULT_MAPPING
- See Also:
- Constant Field Values
-
SINGLE_MAPPING_NAME
- See Also:
- Constant Field Values
-
INDEX_MAPPING_NESTED_FIELDS_LIMIT_SETTING
-
INDEX_MAPPING_NESTED_DOCS_LIMIT_SETTING
-
INDEX_MAPPING_TOTAL_FIELDS_LIMIT_SETTING
-
INDEX_MAPPING_DEPTH_LIMIT_SETTING
-
INDEX_MAPPING_FIELD_NAME_LENGTH_LIMIT_SETTING
-
INDEX_MAPPER_DYNAMIC_DEFAULT
public static final boolean INDEX_MAPPER_DYNAMIC_DEFAULT- See Also:
- Constant Field Values
-
INDEX_MAPPER_DYNAMIC_SETTING
Deprecated. -
META_FIELDS_BEFORE_7DOT8
Deprecated.
-
-
Constructor Details
-
MapperService
public MapperService(IndexSettings indexSettings, IndexAnalyzers indexAnalyzers, org.elasticsearch.common.xcontent.NamedXContentRegistry xContentRegistry, SimilarityService similarityService, MapperRegistry mapperRegistry, Supplier<SearchExecutionContext> searchExecutionContextSupplier, BooleanSupplier idFieldDataEnabled, ScriptCompiler scriptCompiler)
-
-
Method Details
-
hasNested
public boolean hasNested() -
getIndexAnalyzers
-
getNamedAnalyzer
-
parserContext
-
documentParser
Exposes aDocumentParser- Returns:
- a document parser to be used to parse incoming documents
-
parseMapping
public static Map<String,Object> parseMapping(org.elasticsearch.common.xcontent.NamedXContentRegistry xContentRegistry, String mappingSource) throws IOExceptionParses the mappings (formatted as JSON) into a map- Throws:
IOException
-
updateMapping
public void updateMapping(IndexMetadata currentIndexMetadata, IndexMetadata newIndexMetadata) throws IOExceptionUpdate local mapping by applying the incoming mapping that have already been merged with the current one on the master- Throws:
IOException
-
merge
-
merge
public void merge(String type, Map<String,Object> mappings, MapperService.MergeReason reason) throws IOException- Throws:
IOException
-
merge
-
merge
public DocumentMapper merge(String type, CompressedXContent mappingSource, MapperService.MergeReason reason) -
parseMapping
-
mergeMappings
public static Mapping mergeMappings(DocumentMapper currentMapper, Mapping incomingMapping, MapperService.MergeReason reason) -
documentMapper
Return the document mapper, ornullif no mapping has been put yet or no documents have been indexed in the current index yet (which triggers a dynamic mapping update) -
documentMapper
Return theDocumentMapperfor the given type. By using the special "_default_" type, you can get aDocumentMapperfor the default mapping. -
isMappingSourceTyped
Returnstrueif the givenmappingSourceincludes a type as a top-level object. -
isMappingSourceTyped
-
getTypeForUpdate
If the _type name is _doc and there is no _doc top-level key then this means that we are handling a typeless call. In such a case, we override _doc with the actual type name in the mappings. This allows to use typeless APIs on typed indices. -
resolveDocumentType
Resolves a type from a mapping-related request into the type that should be used when merging and updating mappings.If the special `_doc` type is provided, then we replace it with the actual type that is being used in the mappings. This allows typeless APIs such as 'index' or 'put mappings' to work against indices with a custom type name.
-
fieldType
Given the full name of a field, returns itsMappedFieldType. -
mappingLookup
Exposes a snapshot of the mappings for the current index. If no mappings have been registered for the current index, an emptyMappingLookupinstance is returned. An index does not have mappings only if it was created without providing mappings explicitly, and no documents have yet been indexed in it. -
getEagerGlobalOrdinalsFields
Returns all mapped field types. -
indexAnalyzer
public NamedAnalyzer indexAnalyzer(String field, Function<String,NamedAnalyzer> unindexedFieldAnalyzer)Return the index-time analyzer associated with a particular field- Parameters:
field- the field nameunindexedFieldAnalyzer- a function to return an Analyzer for a field with no directly associated index-time analyzer
-
close
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException
-
isMetadataField
- Returns:
- Whether a field is a metadata field. this method considers all mapper plugins
-
reloadSearchAnalyzers
- Throws:
IOException
-