elasticsearch新增字段如何设置不索引
elasticsearch 版本为6.1.4
索引的文档包含的字段种类较多,并且后续会补充新的类型,但用于查询的字段只有固定的6,7个,如何设置新增字段不索引?
这里我所表达的“新增字段”是指在创建索引时mapping中没有指定的字段,后续插入时自己判定类型的字段。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
已解决,创建索引时可将dynamic设为false。
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 the
object
level, by setting thedynamic
parameter tofalse
(to ignore new fields) or tostrict
(to throw an exception if an unknown field is encountered).官方文档:
https://www.elastic.co/guide/...