- Elasticsearch 7.0 Cookbook(Fourth Edition)
- Alberto Paro
- 33字
- 2021-06-24 14:52:12
How to do it...
The _meta mapping field can be populated with any data we want. Consider the following example:
{
"_meta": {
"attr1": ["value1", "value2"],
"attr2": {
"attr3": "value3"
}
}
}