• 跨域查询(Cross-fields Queries)
  • 逐字段加权(Per-field Boosting)

    跨域查询(Cross-fields Queries)

    如果你在索引文档前就能够自定义_all字段的话,那么使用_all字段就是一个不错的方法。但是,ES同时也提供了一个搜索期间的解决方案:使用类型为cross_fields的multi_match查询。cross_fields类型采用了一种以词条为中心(Term-centric)的方法,这种方法和best_fields及most_fields采用的以字段为中心(Field-centric)的方法有很大的区别。它将所有的字段视为一个大的字段,然后在任一字段中搜索每个词条。

    为了阐述以字段为中心和以词条为中心的查询的区别,看看以字段为中心的most_fields查询的解释(译注:通过validate-query API得到):

    1. GET /_validate/query?explain
    2. {
    3. "query": {
    4. "multi_match": {
    5. "query": "peter smith",
    6. "type": "most_fields",
    7. "operator": "and", <1>
    8. "fields": [ "first_name", "last_name" ]
    9. }
    10. }
    11. }

    // SENSE: 110_Multi_Field_Search/50_Cross_field.json

    <1> operator设为了and,表示所有的词条都需要出现。

    对于一份匹配的文档,peter和smith两个词条都需要出现在相同的字段中,要么是first_name字段,要么是last_name字段:

    1. (+first_name:peter +first_name:smith)
    2. (+last_name:peter +last_name:smith)

    而以词条为中心的方法则使用了下面这种逻辑:

    1. +(first_name:peter last_name:peter)
    2. +(first_name:smith last_name:smith)

    换言之,词条peter必须出现在任一字段中,同时词条smith也必须出现在任一字段中。

    cross_fields类型首先会解析查询字符串来得到一个词条列表,然后在任一字段中搜索每个词条。仅这个区别就能够解决在以字段为中心的查询中提到的3个问题中的2个,只剩下倒排文档频度的不同这一问题。

    幸运的是,cross_fields类型也解决了这个问题,从下面的validate-query请求中可以看到:

    1. GET /_validate/query?explain
    2. {
    3. "query": {
    4. "multi_match": {
    5. "query": "peter smith",
    6. "type": "cross_fields", <1>
    7. "operator": "and",
    8. "fields": [ "first_name", "last_name" ]
    9. }
    10. }
    11. }

    // SENSE: 110_Multi_Field_Search/50_Cross_field.json

    <1> cross_fields 使用以词条为中心(Term-centric)进行匹配。

    它通过混合(Blending)字段的倒排文档频度来解决词条频度的问题:

    1. +blended("peter", fields: [first_name, last_name])
    2. +blended("smith", fields: [first_name, last_name])

    换言之,它会查找词条smith在first_name和last_name字段中的IDF值,然后使用两者中较小的作为两个字段最终的IDF值。因为smith是一个常见的姓氏,意味着它也会被当做一个常见的名字。

    提示:为了让cross_fields查询类型能以最佳的方式工作,所有的字段都需要使用相同的解析器。使用了相同的解析器的字段会被组合在一起形成混合字段(Blended Fields)。

    如果你包含了使用不同解析链(Analysis Chain)的字段,它们会以和best_fields相同的方式被添加到查询中。比如,如果我们将title字段添加到之前的查询中(假设它使用了一个不同的解析器),得到的解释如下所示:

    1. (+title:peter +title:smith)
    2. (
    3. +blended("peter", fields: [first_name, last_name])
    4. +blended("smith", fields: [first_name, last_name])
    5. )

    当使用了minimum_should_match以及operator参数时,这一点尤为重要。

    逐字段加权(Per-field Boosting)

    使用cross_fields查询相比使用自定义_all字段的一个优点是你能够在查询期间对个别字段进行加权。

    对于first_name和last_name这类拥有近似值的字段,也许加权是不必要的,但是如果你通过title和description字段来搜索书籍,那么你或许会给予title字段更多的权重。这可以通过前面介绍的caret(^)语法来完成:

    1. GET /books/_search
    2. {
    3. "query": {
    4. "multi_match": {
    5. "query": "peter smith",
    6. "type": "cross_fields",
    7. "fields": [ "title^2", "description" ] <1>
    8. }
    9. }
    10. }

    <1> The title field has a boost of 2, while the description field
    has the default boost of 1.

    能够对个别字段进行加权带来的优势应该和对多个字段执行查询伴随的代价进行权衡,因为如果使用自定义的_all字段,那么只需要要对一个字段进行查询。选择能够给你带来最大收益的方案。