我用的是es7.1.0,一直报这个错,都说是type类型的问题,那么这个版本的应该怎么写,求指教!谢谢!
求指教!谢谢!
求指教!谢谢!
2019-05-25
如上所诉,ES7.0移除了Type这个概念,所以这里有答案:
在ES7.0中,移除了类型(Type)这个概念。
因为在Elasticsearch索引中,不同类型(Type)中具有相同名称的字段在内部由相同的Lucene字段支持。一个index中多个Type在Lucene中会有许多问题。参考官方文档https://www.elastic.co/guide/en/elasticsearch/reference/current/removal-of-types.html#_why_are_mapping_types_being_removed
——摘自 https://blog.csdn.net/Zereao/article/details/89378283
在官网找到了对应的资料
https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-put-mapping.html
在Elasticsearch 6.0.0或更高版本中创建的索引可能只包含单个映射类型。在具有多种映射类型的5.x中创建的索引将继续像以前一样在Elasticsearch 6.x中运行。映射类型将在Elasticsearch 7.0.0中完全删除。
举报