WARNING: Version 2.3 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.
_meta field
edit_meta
field
editEach mapping type can have custom meta data associated with it. These are not used at all by Elasticsearch, but can be used to store application-specific metadata, such as the class that a document belongs to:
PUT my_index { "mappings": { "user": { "_meta": { "class": "MyApp::User", "version": { "min": "1.0", "max": "1.3" } } } } }
This |
The _meta
field can be updated on an existing type using the
PUT mapping API.