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":{
}
}
}