跳过索引并跳过存储未映射的字段

时间:2016-03-10 18:39:05

标签: indexing elasticsearch

我想索引我在映射模板中明确写入的字段。我对其他字段不感兴趣所以我尝试使用dynamic_template中的选项index:no与所有字段和所有mapping_type匹配但我无法达到我的预期,因为我仍然可以搜索不需要的字段:

     "dynamic_templates": [
        {
           "not_indexed": {
              "match": "*",
              "match_mapping_type": "*",
              "mapping": {
                 "index": "no"
              }
           }
        }
     ]

1 个答案:

答案 0 :(得分:1)

解决了

"_all": { "enabled": false },