book/novel/_mappings 请求时报错, 如何解决

来源:4-1 索引创建

慕粉1927057669

2021-04-20 23:15

{"error": {},{}"type": "illegal_argument_exception","reason": "Types cannot be provided in put mapping requests, unless the include_type_name parameter is set to true.""root_cause": [],"type": "illegal_argument_exception","reason": "Types cannot be provided in put mapping requests, unless the include_type_name parameter is set to true.""status": 400}


写回答 关注

2回答

  • 叶0528
    2022-12-12 15:52:44
    book/_mapping/novel?include_type_name=true PUT
    {
      "novel": {
        "properties": {
          "title": {
            "type": "text"
          }
        }
      }
    }

    http://img.mukewang.com/6396ddb40001e63808030600.jpg

    http://img4.mukewang.com/6396ddc90001bd5508800659.jpg

  • 野生的程序猿一只
    2021-09-08 11:46:37

    {

    "settings": {

    "number_of_shards": 3,

    "number_of_replicas": 1

    },

    "mappings": {


    "properties": {

    "name": {

    "type": "text"

    },

    "country": {

    "type": "keyword"

    },

    "age": {

    "type": "integer"

    }

    }

    }

    }


    这样试试呢,type目前高版本已经不支持了


ElasticSearch入门

ElasticSearch轻松入门,Spring Boot集成ES

67740 学习 · 302 问题

查看课程

相似问题