es5.2.2使用postman创建索引时报如下错误 "type": "index_not_found_exception",,求教!

来源:4-1 索引创建

LAlexH

2019-07-11 11:43

body如下:

{

"settings":{

"number_of_shards": 5,

"number_of_replicas": 1

},

"mappings":{

"man":{

"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"

}

}

},

"woman":{

}

}

}

报错如下:

{

    "error": {

        "root_cause": [

            {

                "type": "index_not_found_exception",

                "reason": "no such index",

                "index_uuid": "_na_",

                "resource.type": "index_or_alias",

                "resource.id": "people",

                "index": "people"

            }

        ],

        "type": "index_not_found_exception",

        "reason": "no such index",

        "index_uuid": "_na_",

        "resource.type": "index_or_alias",

        "resource.id": "people",

        "index": "people"

    },

    "status": 404

}

求教,多谢!!

写回答 关注

2回答

  • 慕前端310603
    2019-11-15 22:52:58

    使用put

  • xxingao
    2019-07-12 16:34:05

    先创建people索引

ElasticSearch入门

ElasticSearch轻松入门,Spring Boot集成ES

67740 学习 · 302 问题

查看课程

相似问题