欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ElasticSearch创建索引报错Root mapping definition has unsupported parameters:

程序员文章站 2022-07-09 15:38:46
...

ES创建索引时,报错

 "reason": "Root mapping definition has unsupported parameters:

语法错误。

原因:我这里是因为换了7.x版本,7.x版本以后就不支持type了,所以创建索引时不用加type{}

7.x之前的版本mappings里应该是这么写

 "mappings": {
    "type": {
      "properties":{

	}
    } 
  }