- Elasticsearch 7.0 Cookbook(Fourth Edition)
- Alberto Paro
- 45字
- 2021-06-24 14:52:03
How to do it...
We can extend the preceding order example by adding some of the special fields, for example:
PUT test/_mapping
{
"_source": { "store": true
},
"_routing": { "required": true
},
"_index": {
"enabled": true
}, "properties": {
... truncated ....
}
}