2015-08-06 11:24:29 -04:00
|
|
|
[[mapping-meta-field]]
|
|
|
|
=== `_meta` field
|
|
|
|
|
2017-07-05 06:30:19 -04:00
|
|
|
A mapping type can have custom meta data associated with it. These are not
|
2015-08-06 11:24:29 -04:00
|
|
|
used at all by Elasticsearch, but can be used to store application-specific
|
|
|
|
metadata, such as the class that a document belongs to:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
PUT my_index
|
|
|
|
{
|
|
|
|
"mappings": {
|
2018-10-22 14:54:04 -04:00
|
|
|
"_doc": {
|
2015-08-06 11:24:29 -04:00
|
|
|
"_meta": { <1>
|
|
|
|
"class": "MyApp::User",
|
|
|
|
"version": {
|
|
|
|
"min": "1.0",
|
|
|
|
"max": "1.3"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
2016-05-09 09:42:23 -04:00
|
|
|
// CONSOLE
|
2015-08-06 11:24:29 -04:00
|
|
|
<1> This `_meta` info can be retrieved with the
|
|
|
|
<<indices-get-mapping,GET mapping>> API.
|
|
|
|
|
|
|
|
The `_meta` field can be updated on an existing type using the
|
2018-11-28 06:04:57 -05:00
|
|
|
<<indices-put-mapping,PUT mapping>> API:
|
|
|
|
|
|
|
|
[source,js]
|
|
|
|
--------------------------------------------------
|
|
|
|
PUT my_index/_mapping/_doc
|
|
|
|
{
|
|
|
|
"_meta": {
|
|
|
|
"class": "MyApp2::User3",
|
|
|
|
"version": {
|
|
|
|
"min": "1.3",
|
|
|
|
"max": "1.5"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--------------------------------------------------
|
|
|
|
// CONSOLE
|
|
|
|
// TEST[continued]
|