Step1:
放置http://localhost:9200/hindex
  {
      "mappings" : {
            "hProvider":{
                "properties": {
                    "iPid"  : { 
                        "type": "string"
                    },
                    "pType" : {
                        "type" : "string"
                    },
                    "pInfo" : {
                        "properties":{
                            "businessName": {
                                "type": "string"
                            },
                            "dob": {
                                "type": "string"
                            },
                            "firstName": {
                                "type": "string"
                            },
                            "gender": {
                                "type": "string",
                                "index": "not_analyzed"
                            }
                        }
                    },
                    "locations" : {
                        "type" : "nested",
                        "properties" :  {
                            "addressInfo" : {
                               "properties" : {
                                        "city": {
                                              "type": "string",
                                              "index": "not_analyzed"
                                        },
                                        "county": {
                                              "type": "string",
                                              "index": "not_analyzed"
                                        }
                                }
                            }
                        }
                    }
                }
            }
        }
    }获取mapping
{"hindex":{"mappings":{"hProvider":{"properties":{"iPid":{"type":"string"},"locations":{"type":"nested","properties":{"addressInfo":{"properties":{"city":{"type":"string","index":"not_analyzed"},"county":{"type":"string","index":"not_analyzed"}}}}},"pInfo":{"properties":{"businessName":{"type":"string"},"dob":{"type":"string"},"firstName":{"type":"string"},"gender":{"type":"string","index":"not_analyzed"}}},"pType":{"type":"string"}}}}}}POST create
{
               "iPid"  :  "xyz",
               "pType" : "HealthCareProfessional",
               "pInfo": {
                  "businessName" : "hdata",
                  "firstName" : "Dawoods",           
                  "dob" : "11/18/1975",
                  "gender" : "male"
                },
                "locations" : [
                    {
                        "addressInfo" : {  "city" : "Olney",  "county" : "UnitedStates" } 
                    }, 
                    {
                        "addressInfo" :  {  "city" : "Rivers", "county" : "United States" }
                    }
                ]
}答复:
{"error":{"root_cause":[{"type":"remote_transport_exception","reason":"[node-1][10.194.153.161:9300][indices:data/write/index[p]]"}],"type":"illegal_argument_exception","reason":"object mapping [locations] can't be changed from nested to non-nested"},"status":400}尝试过不同的数据集,但是没有运气,数据上的错误是什么?
发布于 2016-08-19 11:40:07
第三个命令不正确,它没有在正确的映射类型上运行,它试图创建一个名为prof的新映射类型,其中包含一个非嵌套的locations字段,该字段与同一索引中的hProvider映射类型中的嵌套字段发生冲突。
将其更改为:
POST http://localhost:9200/hindex/hProvider/1/?_create
                                     ^
                                     |
                                change thishttps://stackoverflow.com/questions/39037883
复制相似问题