- Elasticsearch Guide: other versions:
- Getting Started
- Setup
- Breaking changes
- API Conventions
- Document APIs
- Search APIs
- Search
- URI Search
- Request Body Search
- Search Template
- Search Shards API
- Aggregations
- Min Aggregation
- Max Aggregation
- Sum Aggregation
- Avg Aggregation
- Stats Aggregation
- Extended Stats Aggregation
- Value Count Aggregation
- Percentiles Aggregation
- Percentile Ranks Aggregation
- Cardinality Aggregation
- Geo Bounds Aggregation
- Top hits Aggregation
- Scripted Metric Aggregation
- Global Aggregation
- Filter Aggregation
- Filters Aggregation
- Missing Aggregation
- Nested Aggregation
- Reverse nested Aggregation
- Children Aggregation
- Terms Aggregation
- Significant Terms Aggregation
- Range Aggregation
- Date Range Aggregation
- IPv4 Range Aggregation
- Histogram Aggregation
- Date Histogram Aggregation
- Geo Distance Aggregation
- GeoHash grid Aggregation
- Facets
- Suggesters
- Multi Search API
- Count API
- Search Exists API
- Validate API
- Explain API
- Percolator
- More Like This API
- Indices APIs
- Create Index
- Delete Index
- Get Index
- Indices Exists
- Open / Close Index API
- Put Mapping
- Get Mapping
- Get Field Mapping
- Types Exists
- Delete Mapping
- Index Aliases
- Update Indices Settings
- Get Settings
- Analyze
- Index Templates
- Warmers
- Status
- Indices Stats
- Indices Segments
- Indices Recovery
- Clear Cache
- Flush
- Refresh
- Optimize
- Upgrade
- Shadow replica indices
- cat APIs
- Cluster APIs
- Query DSL
- Queries
- Match Query
- Multi Match Query
- Bool Query
- Boosting Query
- Common Terms Query
- Constant Score Query
- Dis Max Query
- Filtered Query
- Fuzzy Like This Query
- Fuzzy Like This Field Query
- Function Score Query
- Fuzzy Query
- GeoShape Query
- Has Child Query
- Has Parent Query
- Ids Query
- Indices Query
- Match All Query
- More Like This Query
- Nested Query
- Prefix Query
- Query String Query
- Simple Query String Query
- Range Query
- Regexp Query
- Span First Query
- Span Multi Term Query
- Span Near Query
- Span Not Query
- Span Or Query
- Span Term Query
- Term Query
- Terms Query
- Top Children Query
- Wildcard Query
- Minimum Should Match
- Multi Term Query Rewrite
- Template Query
- Filters
- And Filter
- Bool Filter
- Exists Filter
- Geo Bounding Box Filter
- Geo Distance Filter
- Geo Distance Range Filter
- Geo Polygon Filter
- GeoShape Filter
- Geohash Cell Filter
- Has Child Filter
- Has Parent Filter
- Ids Filter
- Indices Filter
- Limit Filter
- Match All Filter
- Missing Filter
- Nested Filter
- Not Filter
- Or Filter
- Prefix Filter
- Query Filter
- Range Filter
- Regexp Filter
- Script Filter
- Term Filter
- Terms Filter
- Type Filter
- Queries
- Mapping
- Analysis
- Analyzers
- Tokenizers
- Token Filters
- Standard Token Filter
- ASCII Folding Token Filter
- Length Token Filter
- Lowercase Token Filter
- Uppercase Token Filter
- NGram Token Filter
- Edge NGram Token Filter
- Porter Stem Token Filter
- Shingle Token Filter
- Stop Token Filter
- Word Delimiter Token Filter
- Stemmer Token Filter
- Stemmer Override Token Filter
- Keyword Marker Token Filter
- Keyword Repeat Token Filter
- KStem Token Filter
- Snowball Token Filter
- Phonetic Token Filter
- Synonym Token Filter
- Compound Word Token Filter
- Reverse Token Filter
- Elision Token Filter
- Truncate Token Filter
- Unique Token Filter
- Pattern Capture Token Filter
- Pattern Replace Token Filter
- Trim Token Filter
- Limit Token Count Token Filter
- Hunspell Token Filter
- Common Grams Token Filter
- Normalization Token Filter
- CJK Width Token Filter
- CJK Bigram Token Filter
- Delimited Payload Token Filter
- Keep Words Token Filter
- Keep Types Token Filter
- Classic Token Filter
- Apostrophe Token Filter
- Character Filters
- ICU Analysis Plugin
- Modules
- Index Modules
- Testing
- Glossary of terms
WARNING: Version 1.5 of Elasticsearch has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Object Type
editObject Type
editJSON documents are hierarchical in nature, allowing them to define inner "objects" within the actual JSON. Elasticsearch completely understands the nature of these inner objects and can map them easily, providing query support for their inner fields. Because each document can have objects with different fields each time, objects mapped this way are known as "dynamic". Dynamic mapping is enabled by default. Let’s take the following JSON as an example:
{ "tweet" : { "person" : { "name" : { "first_name" : "Shay", "last_name" : "Banon" }, "sid" : "12345" }, "message" : "This is a tweet!" } }
The above shows an example where a tweet includes the actual person
details. A person
is an object, with a sid
, and a name
object
which has first_name
and last_name
. It’s important to note that
tweet
is also an object, although it is a special
root object type
which allows for additional mapping definitions.
The following is an example of explicit mapping for the above JSON:
{ "tweet" : { "properties" : { "person" : { "type" : "object", "properties" : { "name" : { "type" : "object", "properties" : { "first_name" : {"type" : "string"}, "last_name" : {"type" : "string"} } }, "sid" : {"type" : "string", "index" : "not_analyzed"} } }, "message" : {"type" : "string"} } } }
In order to mark a mapping of type object
, set the type
to object.
This is an optional step, since if there are properties
defined for
it, it will automatically be identified as an object
mapping.
properties
editAn object mapping can optionally define one or more properties using the
properties
tag for a field. Each property can be either another
object
, or one of the
core_types.
dynamic
editOne of the most important features of Elasticsearch is its ability to be
schema-less. This means that, in our example above, the person
object
can be indexed later with a new property — age
, for example — and it
will automatically be added to the mapping definitions. Same goes for
the tweet
root object.
This feature is by default turned on, and it’s the dynamic
nature of
each object mapped. Each object mapped is automatically dynamic, though
it can be explicitly turned off:
{ "tweet" : { "properties" : { "person" : { "type" : "object", "properties" : { "name" : { "dynamic" : false, "properties" : { "first_name" : {"type" : "string"}, "last_name" : {"type" : "string"} } }, "sid" : {"type" : "string", "index" : "not_analyzed"} } }, "message" : {"type" : "string"} } } }
In the above example, the name
object mapped is not dynamic, meaning
that if, in the future, we try to index JSON with a middle_name
within
the name
object, it will get discarded and not added.
There is no performance overhead if an object
is dynamic, the ability
to turn it off is provided as a safety mechanism so "malformed" objects
won’t, by mistake, index data that we do not wish to be indexed.
If a dynamic object contains yet another inner object
, it will be
automatically added to the index and mapped as well.
When processing dynamic new fields, their type is automatically derived.
For example, if it is a number
, it will automatically be treated as
number core_type. Dynamic
fields default to their default attributes, for example, they are not
stored and they are always indexed.
Date fields are special since they are represented as a string
. Date
fields are detected if they can be parsed as a date when they are first
introduced into the system. The set of date formats that are tested
against can be configured using the dynamic_date_formats
on the root object,
which is explained later.
Note, once a field has been added, its type can not change. For example, if we added age and its value is a number, then it can’t be treated as a string.
The dynamic
parameter can also be set to strict
, meaning that not
only will new fields not be introduced into the mapping, but also that parsing
(indexing) docs with such new fields will fail.
enabled
editThe enabled
flag allows to disable parsing and indexing a named object
completely. This is handy when a portion of the JSON document contains
arbitrary JSON which should not be indexed, nor added to the mapping.
For example:
{ "tweet" : { "properties" : { "person" : { "type" : "object", "properties" : { "name" : { "type" : "object", "enabled" : false }, "sid" : {"type" : "string", "index" : "not_analyzed"} } }, "message" : {"type" : "string"} } } }
In the above, name
and its content will not be indexed at all.
include_in_all
editinclude_in_all
can be set on the object
type level. When set, it
propagates down to all the inner mappings defined within the object
that do not explicitly set it.
path
editDeprecated in 1.0.0.
Use copy_to
instead
In the core_types
section, a field can have a index_name
associated with it in order to
control the name of the field that will be stored within the index. When
that field exists within an object(s) that are not the root object, the
name of the field of the index can either include the full "path" to the
field with its index_name
, or just the index_name
. For example
(under mapping of type person
, removed the tweet type for clarity):
{ "person" : { "properties" : { "name1" : { "type" : "object", "path" : "just_name", "properties" : { "first1" : {"type" : "string"}, "last1" : {"type" : "string", "index_name" : "i_last_1"} } }, "name2" : { "type" : "object", "path" : "full", "properties" : { "first2" : {"type" : "string"}, "last2" : {"type" : "string", "index_name" : "i_last_2"} } } } } }
In the above example, the name1
and name2
objects within the
person
object have different combination of path
and index_name
.
The document fields that will be stored in the index as a result of that
are:
JSON Name | Document Field Name |
---|---|
|
|
|
|
|
|
|
|
Note, when querying or using a field name in any of the APIs provided
(search, query, selective loading, …), there is an automatic detection
from logical full path and into the index_name
and vice versa. For
example, even though name1
/last1
defines that it is stored with
just_name
and a different index_name
, it can either be referred to
using name1.last1
(logical name), or its actual indexed name of
i_last_1
.
More over, where applicable, for example, in queries, the full path
including the type can be used such as person.name.last1
, in this
case, both the actual indexed name will be resolved to match against the
index, and an automatic query filter will be added to only match
person
types.
On this page