Elasticsearch:路径下的嵌套对象不是嵌套类型

时间:2015-03-30 13:01:35

标签: elasticsearch nested

我一直在尝试搜索包含嵌套字段的文档。我创建了这样的嵌套映射:

{
  "message": {
    "properties": {
      "messages": {
        "type": "nested",
        "properties": {
          "message_id": { "type": "string" },
          "message_text": { "type": "string" },
          "message_nick": { "type": "string" }
        }
      }
    }
  }
}

我的搜索结果如下:

curl -XGET 'localhost:9200/thread_and_messages/thread/_search' \
     -d '{"query": {"bool": {"must": [{"match": {"thread_name": "Banana"}}, {"nested": {"path": "messages", "query": {"bool": {"must": [{"match": {"messages.message_text": "Banana"}}]}}}]}}}}'

然而,我收到此错误消息:

QueryParsingException[[thread_and_messages] [nested] nested object under path [messages] is not of nested type]

修改

我仍然收到此错误。我通过Java这样做,所以这是我想要创建的文档:

{
  "_id": {
    "path": "3",
    "thread_id": "3",
    "thread_name": "Banana",
    "created": "Wed Mar 25 2015",
    "first_nick": "AdminTech",
    "messages": [
      {
        "message_id": "9",
        "message_text": "Banana",
        "message_nick": "AdminTech"
      }
    ]
  }
}

像这样创建索引:

CreateIndexRequestBuilder indexRequest = client.admin().indices().prepareCreate(INDEX).addMapping("message", mapping);

我认为我可能错误地索引了文档。

2 个答案:

答案 0 :(得分:21)

TLDR:将"type": "nested",置于嵌套类型中。

假设我们有一个普通类型,并且其中嵌套了另一种类型:

{
   "some_index": {
      "mappings": {
         "normal_type": {
            "properties": {
               "nested_type": {
                  "type": "nested",
                  "properties": {
                     "address": {
                        "type": "string"
                     },
                     "country": {
                        "type": "string"
                     }
                  }
               },
               "first_name": {
                  "type": "string"
               },
               "last_name": {
                  "type": "string"
               }
            }
         }
      }
   }
}

嵌套查询需要"type": "nested",行才能"path":分配给nested_type,如下所示:

GET /some_index/normal_type/_search
{
  "query": {
    "nested": {
      "query": {
        "bool": {}
      },
      "path": "nested_type"
    }
  }
}

"type": "nested",行似乎只在较新的Elasticsearch版本中需要(从1.1.1开始?)。

答案 1 :(得分:0)

查询DSL中的语法错误。必须阻止query->bool->must

的关闭不正确
{
    "query": {
        "bool": {
                "must": [

            }// Should be ] 
        }
    }
}

正确的版本查询是:

curl -XGET 'localhost:9200/thread_and_messages/thread/_search' -d '{
   "query": {
      "bool": {
         "must": [
            {
               "match": {
                  "thread_name": "Banana"
               }
            },
            {
               "nested": {
                  "path": "message",
                  "query": {
                     "bool": {
                        "must": [
                           {
                              "match": {
                                 "messages.message_text": "Banana"
                              }
                           }
                        ]
                     }
                  }
               }
            }
         ]
      }
   }
}'