3.2.4.Dynamic Mapping(动态映射)
Last updated
Last updated
curl -XPUT 'localhost:9200/_template/template_all?pretty' -H 'Content-Type: application/json' -d'
{
"index.mapper.dynamic":false # 1
}curl -XPUT 'localhost:9200/_template/template_all?pretty' -H 'Content-Type: application/json' -d'
{
"template": "*",
"order":0,
"settings": {
"index.mapper.dynamic": false # 1
}
}
'