Elasticsearch - 来自curl示例的python语法

时间:2017-07-28 13:51:07

标签: python curl elasticsearch

使用curl,以下请求有效:

curl -XGET 'localhost:9200/dumperino/_search?pretty' -H 'Content-Type: application/json' -d'
{
  "query": {
    "bool": {
      "should": [
        { "match": { "id_1":  "4000000029898186" }},
        { "match": { "id_2":  "4000000029898188"   }}
      ]
    }
  }
}
'

我现在正试图通过python使用elasticsearch。

from elasticsearch import helpers
es = elasticsearch.Elasticsearch()
qu={
  "query": {
    "bool": {
      "should": [
        { "match": { "id_1":  "4000000029898186" }},
        { "match": { "id_2": "4000000029898188"   }}
      ]
    }
  }
}
result = es.search(index= "dumperino",q=qu)

错误: elasticsearch.exceptions.RequestError: TransportError(400, u'search_phase_execution_exception', u"Failed to parse query [{'query': {'bool': {'should': [{'match': {'id_1': '4000000029898186'}}, {'match': {'id_2': '4000000029898188'}}]}}}]")

之前我已经成功使用过这种格式,虽然之前有一个更简单的字符串查询。

我需要在弹性搜索的JSON查询中更改哪些内容才能在Python中正确解析它?

1 个答案:

答案 0 :(得分:2)

请尝试:result = es.search(index= "dumperino",body=qu)