0
アレイフィールドの集約合計の取得に問題があります。ElasticSearch集約アレイフィールドの合計
私は、casting.nameとcasting.categoryの2つのフィールドに基づいて集計を実行したいと思います。
My Schema:
"mappings": {
"movies": {
"properties": {
"title" : { "type": "string" },
"year" : { "type": "integer" },
"casting": {
"type": "nested",
"properties": {
"name": { "type": "string" },
"quantity": { "type": "long" }
}
}
}
}
}
Iはcasting.quantityフィールドに基づいて別のTermsAggregation和であるsubaggregationと、casting.nameフィールドに基づいTermsAggregationと試みました。鋳造のすべての名前と数量フィールドを合計します
My Query representation is shown below:
GET groups/_search?search_type=count
{
"query" : {
"terms" : {
"movies.casting.name" : ["gap"],
"minimum_should_match":1
}
},
"aggregations" : {
"termsAggregation" : {
"terms" : {
"field" : "movies.casting.name"
},
"aggregations": {
"quantitySum": {
"filter" : {
"term" : {
"groups.permissions.product" : "ycsfa" }
},
"aggregations" : {
"gapSum" : {
"sum" : {
"field" : "movies.casting.quantity" }
}
}
}
}
}
}
}
Showing wrong results ...
結果...
任意のアイデアをここに?
は鋳造がネストされていないときになりますどのような...ありがとう??? –
あなたが言ったクエリを使用することができます。 – Richa
期待通りに機能しません...キャスト配列のすべての要素をクエリーします。 –