Поле _meta
Тип отображения может иметь связанные с ним пользовательские метаданные. Они вообще не используются Elasticsearch, но могут использоваться для хранения метаданных, специфичных для приложения, например, класса, к которому принадлежит документ:
PUT my-index-000001
{
"mappings": {
"_meta": {
"class": "MyApp::User",
"version": {
"min": "1.0",
"max": "1.3"
}
}
}
} | Эта |
Поле _meta можно обновить для существующего типа с помощью API обновления отображения:
PUT my-index-000001/_mapping
{
"_meta": {
"class": "MyApp2::User3",
"version": {
"min": "1.3",
"max": "1.5"
}
}
}
© 2023-2025 Elasticsearch
As of September 2024, Elasticsearch is available under a choice of three licenses: the Server Side Public License (SSPL), the Elastic License, or the AGPLv3 (OSI approved).
Elasticsearch and the Elasticsearch logo are trademarks of Elasticsearch B.V., registered in the U.S. and in other countries.
https://www.elastic.co/guide/en/elasticsearch/reference/7.17/mapping-meta-field.html