为了账号安全,请及时绑定邮箱和手机立即绑定

我用的是es7.1.0,一直报这个错,都说是type类型的问题,那么这个版本的应该怎么写,求指教!谢谢!

求指教!谢谢!

https://img1.sycdn.imooc.com//5ce8e2bc0001538a13170720.jpg

正在回答

7 回答

如上所诉,ES7.0移除了Type这个概念,所以这里有答案:

https://www.bilibili.com/video/av94512375?p=7

0 回复 有任何疑惑可以回复我~

在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




2 回复 有任何疑惑可以回复我~

我找到办法如下

url更改:

127.0.0.1:9200/people/man

JSON更改:

{

"settings":{

"number_of_shards":3,

"number_of_replicas":1

},


"properties":{

"name":{

"type":"text"

},

"country":{

"type":"keyword"

},

"age":{

"type":"integer"

},

"date":{

"type":"date",

"format":"yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis"

}

}

}


1 回复 有任何疑惑可以回复我~
#1

qq_LeArn淡然_0

这是错的,别用!
2019-10-28 回复 有任何疑惑可以回复我~
#2

qq_LeArn淡然_0

https://lanffy.github.io/2019/04/16/How-Elasticsearch-Create-Index
2019-10-28 回复 有任何疑惑可以回复我~

https://img1.sycdn.imooc.com//5d232eed0001d70208410423.jpg

报错这个信息,什么原因?

0 回复 有任何疑惑可以回复我~
#1

慕少2515270

请求方式,改成put
2019-07-16 回复 有任何疑惑可以回复我~
#2

HA习惯而已 回复 慕少2515270

也是同样报错。
2019-07-23 回复 有任何疑惑可以回复我~

POST /twitter/_create/1

{}


POST /twitter/_mapping

{

  "properties": {

    "email": {

      "type": "keyword"

    }

  }

}

老师的版本较老,建议使用Kibana

0 回复 有任何疑惑可以回复我~

我是这么处理的

根据官方文档的示例, 先建立type

https://img1.sycdn.imooc.com//5cea5e3f000192fa09210304.jpg

然后给type添加properties

https://img1.sycdn.imooc.com//5cea5e710001045d08890548.jpg

3 回复 有任何疑惑可以回复我~
#1

qq_浮華塵世荒年痛_03476721

有效。
2020-02-11 回复 有任何疑惑可以回复我~

在官网找到了对应的资料

https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-put-mapping.html

https://img1.sycdn.imooc.com//5cea5be60001952507680159.jpg

 在Elasticsearch 6.0.0或更高版本中创建的索引可能只包含单个映射类型。在具有多种映射类型的5.x中创建的索引将继续像以前一样在Elasticsearch 6.x中运行。映射类型将在Elasticsearch 7.0.0中完全删除。 

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

我用的是es7.1.0,一直报这个错,都说是type类型的问题,那么这个版本的应该怎么写,求指教!谢谢!

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信