0

私はelasticsearchに大量のドキュメントを持っています。例として、elasticsearchドキュメントの例を銀行として取り上げました

   {
"_index": "bank",
"_type": "account",
"_id": "25",
"_score": 1,
"_source": {
"account_number": 25,
"balance": 40540,
"firstname": "Virginia",
"lastname": "Ayala",
"age": 39,
"gender": "F",
"address": "171 Putnam Avenue",
"employer": "Filodyne",
"email": "virginiaayala@filodyne.com",
"city": "Nicholson",
"state": "PA"
}
}
,
{
"_index": "bank",
"_type": "account",
"_id": "44",
"_score": 1,
"_source": {
"account_number": 44,
"balance": 34487,
"firstname": "Aurelia",
"lastname": "Harding",
"age": 37,
"gender": "M",
"address": "502 Baycliff Terrace",
"employer": "Orbalix",
"email": "aureliaharding@orbalix.com",
"city": "Yardville",
"state": "DE"
}
}
,
{
"_index": "bank",
"_type": "account",
"_id": "99",
"_score": 1,
"_source": {
"account_number": 99,
"balance": 47159,
"firstname": "Ratliff",
"lastname": "Heath",
"age": 39,
"gender": "F",
"address": "806 Rockwell Place",
"employer": "Zappix",
"email": "ratliffheath@zappix.com",
"city": "Shaft",
"state": "ND"
}
}
,
{
"_index": "bank",
"_type": "account",
"_id": "119",
"_score": 1,
"_source": {
"account_number": 119,
"balance": 49222,
"firstname": "Laverne",
"lastname": "Johnson",
"age": 28,
"gender": "F",
"address": "302 Howard Place",
"employer": "Senmei",
"email": "lavernejohnson@senmei.com",
"city": "Herlong",
"state": "DC"
}
}
,
{
"_index": "bank",
"_type": "account",
"_id": "126",
"_score": 1,
"_source": {
"account_number": 126,
"balance": 3607,
"firstname": "Effie",
"lastname": "Gates",
"age": 39,
"gender": "F",
"address": "620 National Drive",
"employer": "Digitalus",
"email": "effiegates@digitalus.com",
"city": "Blodgett",
"state": "MD"
}
}


これで、各ドキュメントに state と price というフィールドができました。
並べ替え順序が昇順のバランスである個別の状態を含む結果のみを返すクエリを作成するにはどうすればよいですか。

用語の集約を試みましたが、役に立ちませんでした。
アップデート

POST _search
{
   "size": 0,
   "aggs": {
      "states": {
          "terms": {
              "field": "state"
          },
          "aggs": {
              "balances": {
                  "top_hits": {
                      "from" : 0,
                      "size": 1,
                      "sort": {"balance": "asc"}
                  }
              }
          }
      }
   }
}


このクエリでは、価格がそのキー「状態」でソートされたすべてのトップヒットが返されます。しかし、私が欲しいのは、バランスと一意の状態フィールドを使用した並べ替えられた結果です。
上記のクエリに対して、次のような応答が得られます

"buckets": [
            {
               "key": "tx",
               "doc_count": 30,
               "balances": {
                  "hits": {
                     "total": 30,
                     "max_score": null,
                     "hits": [
                        {
                           "_index": "bank",
                           "_type": "account",
                           "_id": "161",
                           "_score": null,
                           "_source": {
                              "account_number": 161,
                              "balance": 4659,
                              "firstname": "Doreen",
                              "lastname": "Randall",
                              "age": 37,
                              "gender": "F",
                              "address": "178 Court Street",
                              "employer": "Calcula",
                              "email": "doreenrandall@calcula.com",
                              "city": "Belmont",
                              "state": "TX"
                           },
                           "sort": [
                              4659
                           ]
                        }
                     ]
                  }
               }
            },
            {
               "key": "md",
               "doc_count": 28,
               "balances": {
                  "hits": {
                     "total": 28,
                     "max_score": null,
                     "hits": [
                        {
                           "_index": "bank",
                           "_type": "account",
                           "_id": "527",
                           "_score": null,
                           "_source": {
                              "account_number": 527,
                              "balance": 2028,
                              "firstname": "Carver",
                              "lastname": "Peters",
                              "age": 35,
                              "gender": "M",
                              "address": "816 Victor Road",
                              "employer": "Housedown",
                              "email": "carverpeters@housedown.com",
                              "city": "Nadine",
                              "state": "MD"
                           },
                           "sort": [
                              2028
                           ]
                        }
                     ]
                  }
               }
            },
            {
               "key": "id",
               "doc_count": 27,
               "balances": {
                  "hits": {
                     "total": 27,
                     "max_score": null,
                     "hits": [
                        {
                           "_index": "bank",
                           "_type": "account",
                           "_id": "402",
                           "_score": null,
                           "_source": {
                              "account_number": 402,
                              "balance": 1282,
                              "firstname": "Pacheco",
                              "lastname": "Rosales",
                              "age": 32,
                              "gender": "M",
                              "address": "538 Pershing Loop",
                              "employer": "Circum",
                              "email": "pachecorosales@circum.com",
                              "city": "Elbert",
                              "state": "ID"
                           },
                           "sort": [
                              1282
                           ]
                        }
                     ]
                  }
               }
            },

ソートされた価格ではありません。

4

1 に答える 1

0

このようにしてみてください:

POST bank/_search
{
   "size": 0,
   "aggs": {
      "states": {
          "terms": {
              "field": "state",
              "order": {
                   "balances": "asc"
              }
          },
          "aggs": {
              "balances": {
                  "sum": {
                      "field": "balance"
                  }
              }
          }
      }
   }
}

注:priceフィールドは表示されませんが、balance1 つです。おそらくそれがあなたの意図したものです。

価格でソートされた州ごとのすべてのドキュメントを取得することに興味がある場合は、これも試すことができます。

POST bank/_search
{
   "size": 0,
   "aggs": {
      "states": {
          "terms": {
              "field": "state"
          },
          "aggs": {
              "balances": {
                  "top_hits": {
                      "size": 5,
                      "sort": {"balance": "asc"}
                  }
              }
          }
      }
   }
}
于 2016-05-03T11:35:17.757 に答える