elasticsearch新增字段如何设置不索引

发布于 2022-09-12 01:59:48 字数 146 浏览 36 评论 0

elasticsearch 版本为6.1.4
索引的文档包含的字段种类较多,并且后续会补充新的类型,但用于查询的字段只有固定的6,7个,如何设置新增字段不索引?
这里我所表达的“新增字段”是指在创建索引时mapping中没有指定的字段,后续插入时自己判定类型的字段。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傾旎 2022-09-19 01:59:48

已解决,创建索引时可将dynamic设为false。

PUT /my-index
{
  "mappings": {
    "dynamic": "false",
    "properties": {
      "age":    { "type": "integer" },  
      "email":  { "type": "keyword"  }, 
      "name":   { "type": "text"  }     
    }
  }
}

dynamic相关描述:
By default, when a previously unseen field is found in a document, Elasticsearch will add the new field to the type mapping. This behaviour can be disabled, both at the document and at theobjectlevel, by setting thedynamicparameter tofalse(to ignore new fields) or tostrict(to throw an exception if an unknown field is encountered).

官方文档:
https://www.elastic.co/guide/...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文