我需要您的帮助才能将查询翻译为pyes。此查询工作正常,问题是我无法使用pyes使其正常工作:
curl -XGET 'http://127.0.0.1:9200/my_index/user/_search?pretty=1' -d '{
"query" : {
"bool":{
"should": [
{ "text": { "first_name": "em" }},
{ "text": { "first_name.partial": "em" }}
]
}
}
}'
根据0.17 docs,我首先是这样做的:
q1 = TextQuery("first_name","em")
q2 = TextQuery("first_name.partial","em")
q = BoolQuery(should=[q1, q2])
conn.search(q,indices='my_index',doc_types='user')
提出了一些异常(exception)之后,我意识到我已经安装了0.16,因为0.17是一个不稳定的分支。
因此,简单地说:如何翻译带有pyes的查询?
谢谢!
最佳答案
似乎无法将查询转换为pyes 0.16。如您所见,0.16中的TextQuery构造函数没有字段参数https://github.com/aparo/pyes/blob/109f84696153f3be474e1d7d261776a1bca04570/pyes/query.py#L856,它似乎会生成无效的elasticsearch查询。另一方面,您的代码在0.17中应该可以正常工作。