Elasticsearch 7 报错:

ElasticSearch7.6学习使用及问题总结

 

 

原因:elasticsearch7默认不在支持指定索引类型,默认索引类型是_doc,如果想改变,则配置include_type_name: true 即可(这个没有测试,官方文档说的,无论是否可行,建议不要这么做,因为elasticsearch8后就不在提供该字段)。官方文档:https://www.elastic.co/guide/en/elasticsearch/reference/current/removal-of-types.html

下面的指令在ES6没问题:

PUT test_index
{
  "settings":{
    "number_of_shards":1, 
    "number_of_replicas":0     
  },
  "mappings":{
    "product": {
      "properties": {
        "title": {"type": "text"}
      }
    }
  }
}

*****product为指定索引类型

ES7必须改为:

PUT test_index
{
  "settings":{
    "number_of_shards":1, 
    "number_of_replicas":0     
  },
  "mappings":{
      "properties": {
        "title": {"type": "text"}
    }
  }
}

 

相关文章:

  • 2019-02-06
  • 2021-10-11
  • 2022-01-29
  • 2021-08-27
  • 2021-04-24
  • 2021-09-10
  • 2021-07-25
  • 2021-10-05
猜你喜欢
  • 2021-10-22
  • 2021-07-05
  • 2022-12-23
  • 2021-04-28
  • 2021-11-17
  • 2021-12-29
  • 2021-11-18
相关资源
相似解决方案