我想索引仅我在映射模板中明确写入的字段。我对其他字段不感兴趣所以我尝试使用dynamic_template中的选项index:no
与所有字段和所有mapping_type匹配但我无法达到我的预期,因为我仍然可以搜索不需要的字段:
"dynamic_templates": [
{
"not_indexed": {
"match": "*",
"match_mapping_type": "*",
"mapping": {
"index": "no"
}
}
}
]
答案 0 :(得分:1)
解决了
"_all": { "enabled": false },