web-dev-qa-db-ja.com

Elasticsearchは結果をソートしていません

Elasticsearchクエリに問題があります。結果をソートできるようにしたいのですが、elasticsearchはソートタグを無視しています。ここに私のクエリ:

{
    "sort": [{
        "title": {"order": "desc"}
    }],
    "query":{
        "term": { "title": "pagos" }
    }
}

しかし、クエリ部分を削除してsortタグのみを送信すると、機能します。誰かが私に正しい方法を指摘できますか?

次のクエリも試してみました。これは私が持っている完全なクエリです。

{
  "sort": [{
    "title": {"order": "asc"}
  }],
  "query":{
    "bool":{
      "should":[
        {
          "match":{
            "title":{
              "query":"Pagos",
              "boost":9
            }
          }
        },
        {
          "match":{
            "description":{
              "query":"Pagos",
              "boost":5
            }
          }
        },
        {
          "match":{
            "keywords":{
              "query":"Pagos",
              "boost":3
            }
          }
        },
        {
          "match":{
            "owner":{
              "query":"Pagos",
              "boost":2
            }
          }
        }
      ]
    }
  }
}

設定

{
  "settings": {
    "analysis": {
      "filter": {
        "autocomplete_filter": {
          "type": "ngram",
          "min_gram": 3,
          "max_gram": 15,
          "token_chars": [
            "letter",
            "digit",
            "punctuation",
            "symbol"
          ]
        }
      },
      "analyzer": {
        "default" : {
          "tokenizer" : "standard",
          "filter" : ["standard", "lowercase", "asciifolding"]
        },
        "autocomplete": {
          "type": "custom",
          "tokenizer": "standard",
          "filter": [
            "lowercase",
            "asciifolding",
            "autocomplete_filter"
          ]
        }
      }
    }
  }
}

マッピング

{
  "objects": {
    "properties": {
      "id":             { "type": "string", "index": "not_analyzed" },
      "type":           { "type": "string" },
      "title":          { "type": "string", "boost": 9, "analyzer": "autocomplete", "search_analyzer": "standard" },
      "owner":          { "type": "string", "boost": 2 },
      "description":    { "type": "string", "boost": 4 },
      "keywords":       { "type": "string", "boost": 1 }
    }
  }
}

前もって感謝します!

ドキュメントのフィールド「タイトル」分析済み文字列フィールド。これも多値フィールドです。つまり、elasticsearchはフィールドの内容をトークンに分割し、それを個別にインデックスに格納します。 "title"フィールドを最初の用語でアルファベット順にソートし、次に2番目の用語でソートする、などの方法が考えられますが、elasticsearchにはこの情報は、ソート時に自由に使用できます。

したがって、 "title"フィールドのマッピングを次のように変更できます。

{
  "title": {
    "type": "string", "boost": 9, "analyzer": "autocomplete", "search_analyzer": "standard"
  }
}

このようなマルチフィールドマッピングに:

{
  "title": {
    "type": "string", "boost": 9, "analyzer": "autocomplete", "search_analyzer":"standard",
    "fields": {
      "raw": {
        "type": "string",
        "index": "not_analyzed"
      }
    }
  }
}

analyzed "title"フィールドとnot_analyzed "title.raw"フィールド

{
    "sort": [{
        "title.raw": {"order": "desc"}
    }],
    "query":{
        "term": { "title": "pagos" }
    }
}

ここでは美しく説明されています: 文字列の並べ替えとマルチフィールド

22
Vinu Dominic