繁体   English   中英

Elasticsearch索引操作在复杂对象上失败

[英]Elasticsearch index operation fails on complex object

我正在将数据流索引到Elasticsearch,但我无法弄清楚如何规范传入的数据以使其正确无误地建立索引。 我有一个映射类型“ getdatavalues”,它是一个元数据查询。 此元数据查询可以返回外观完全不同的响应,但我看不到差异。 我得到的错误:

{"index":{"_index":"ens_event-2016.03.11","_type":"getdatavalues","_id":"865800029798177_2016_03_11_03_18_12_100037","status":400,"error":"MapperParsingException[object mapping for [getdatavalues] tried to parse field [output] as object, but got EOF, has a concrete value been provided to it?]"}}

执行时:

curl -XPUT 'http://192.168.99.100:80/es/ens_event-2016.03.11/getdatavalues/865800029798177_2016_03_11_03_18_12_100037' -d '{
  "type": "getDataValues",
  "input": {
    "deviceID": {
      "IMEI": "865800029798177",
      "serial-number": "64180258"
    },
    "handle": 644,
    "exprCode": "200000010300140000080001005f00a700000000000000",
    "noRollHandle": "478669308-578452",
    "transactionID": 290
  },
  "timestamp": "2016-03-11T03:18:12.000Z",
  "handle": 644,
  "output": {
    "noRollPubSessHandle": "478669308-578740",
    "publishSessHandle": 1195,
    "status": true,
    "matchFilter": {
      "prefix": "publicExpr.operatorDefined.commercialIdentifier.FoodSvcs.Restaurant.\"A&C Kabul Curry\".\"Rooster Street\"",
      "argValues": {
        "event": "InternationalEvent",
        "hasEvent": "anyEvent"
      }
    },
    "transactionID": 290,
    "validFor": 50
  }
}'

这是Elasticsearch用于映射的内容:

  "getdatavalues" : {
    "dynamic_templates" : [ {
      "strings" : {
        "mapping" : {
          "index" : "not_analyzed",
          "type" : "string"
        },
        "match_mapping_type" : "string"
      }
    } ],
    "properties" : {
      "handle" : {
        "type" : "long"
      },
      "input" : {
        "properties" : {
          "deviceID" : {
            "properties" : {
              "IMEI" : {
                "type" : "string",
                "index" : "not_analyzed"
              },
              "serial-number" : {
                "type" : "string",
                "index" : "not_analyzed"
              }
            }
          },
          "exprCode" : {
            "type" : "string",
            "index" : "not_analyzed"
          },
          "handle" : {
            "type" : "long"
          },
          "noRollHandle" : {
            "type" : "string",
            "index" : "not_analyzed"
          },
          "serviceVersion" : {
            "type" : "string",
            "index" : "not_analyzed"
          },
          "transactionID" : {
            "type" : "long"
          }
        }
      },
      "output" : {
        "properties" : {
          "matchFilter" : {
            "properties" : {
              "argValues" : {
                "properties" : {
                  "Interests" : {
                    "type" : "object"
                  },
                  "MerchantId" : {
                    "type" : "string",
                    "index" : "not_analyzed"
                  },
                  "Queue" : {
                    "type" : "string",
                    "index" : "not_analyzed"
                  },
                  "Vibe" : {
                    "type" : "string",
                    "index" : "not_analyzed"
                  },
                  "event" : {
                    "properties" : {
                      "event" : {
                        "type" : "string",
                        "index" : "not_analyzed"
                      },
                      "hasEvent" : {
                        "type" : "string",
                        "index" : "not_analyzed"
                      }
                    }
                  },
                  "hasEvent" : {
                    "type" : "string",
                    "index" : "not_analyzed"
                  },
                  "interests" : {
                    "type" : "string",
                    "index" : "not_analyzed"
                  }
                }
              },
              "prefix" : {
                "type" : "string",
                "index" : "not_analyzed"
              },
              "transactionID" : {
                "type" : "long"
              },
              "validFor" : {
                "type" : "long"
              }
            }
          },
          "noRollPubSessHandle" : {
            "type" : "string",
            "index" : "not_analyzed"
          },
          "publishSessHandle" : {
            "type" : "long"
          },
          "status" : {
            "type" : "boolean"
          },
          "transactionID" : {
            "type" : "long"
          },
          "validFor" : {
            "type" : "long"
          }
        }
      },
      "timestamp" : {
        "type" : "date",
        "format" : "dateOptionalTime"
      },
      "type" : {
        "type" : "string",
        "index" : "not_analyzed"
      }
    }
  },

看起来argValues对象与您的映射不太一致:

        "argValues": {
            "event": "InternationalEvent",
            "hasEvent": "anyEvent"
        }

可以这样:

        "argValues": {
            "event": {
                "event": "InternationalEvent"
            },
            "hasEvent": "anyEvent"
        }

或这个:

        "argValues": {
            "event": {
                "event": "InternationalEvent"
                "hasEvent": "anyEvent"
            },
        }

两者似乎都是有效的。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM