在Elasticsearch Python DSL中使用带状疱疹和模糊性?

时间:2017-02-17 11:18:22

标签: python elasticsearch querydsl elasticsearch-dsl elasticsearch-dsl-py

如何在Python DSL中呼叫带状疱疹?

这是一个简单的例子,用于搜索" name"中的短语。字段和另一个姓氏"字段。

import json
from elasticsearch import Elasticsearch
from elasticsearch_dsl import Search, Q

def make_dsl_query(fields):
    """
    Construct a query
    """
    es_client = Elasticsearch()
    my_query = Search(using=es_client, index="my_index", doc_type="my_type")

    if fields['name'] and fields['surname']:
        my_query = my_query.query(Q('bool', should=
                   [Q("match", name=fields['name']),
                    Q("match", surname=fields['surname'])]))
    return my_query


if __name__ == '__main__':

    my_query = make_dsl_query(fields={"name": "Ivan The Terrible", "surname": "Conqueror of the World"})
    response = my_query.execute()

    # print response
    for hit in response:
        print(hit.meta.score, hit.name, hit.surname)

1)是否可以使用带状疱疹?如何?我尝试了很多东西,但在文档中找不到任何内容。

这可以在普通的Elasticsearch查询中工作,但显然在Python DSL中以不同的方式调用...

my_query = my_query.query(Q('bool', should=
                   [Q("match", name.shingles=fields['name']),
                    Q("match", surname.shingles=fields['surname'])]))

2)如何将模糊参数传递给我的匹配?似乎无法在其上找到任何东西。理想情况下,我可以做这样的事情:

my_query = my_query.query(Q('bool', should=
                   [Q("match", name=fields['name'], fuzziness="AUTO", max_expansions=10),
                    Q("match", surname=fields['surname'])]))

1 个答案:

答案 0 :(得分:2)

要使用带状疱疹,您需要在映射中定义它们,在查询时间尝试使用它们为时已晚。在查询时,您可以使用match_phrase查询。

my_query = my_query.query(Q('bool', should=
               [Q("match", name.shingles=fields['name']),
                Q("match", surname.shingles=fields['surname'])]))

如果写成:

,这应该有效
 my_query = my_query.query(Q('bool', should=
               [Q("match", name__shingles=fields['name']),
                Q("match", surname__shingles=fields['surname'])]))

假设您在shinglesname字段中定义了surname字段。

请注意,您还可以使用|运算符:

 my_query = Q("match", name__shingles=fields['name']) | Q("match", surname.shingles=fields['surname'])

而不是自己构建bool查询。

希望这有帮助。