Template
- String不分析, 开启_all字段, 关闭时间自动发现
{
"template": "*",
"mappings": {
"_default_": {
"_source": {"enabled": true},
"_all": {"enabled": true},
"date_detection": false,
"dynamic_templates": [
{
"string": {
"mapping": {
"index": "not_analyzed",
"type": "string"
},
"match_mapping_type": "string"
}
}
]
}
},
"aliases": {}
}
网友评论