Elasticsearch get top 2 per group(bucket), then sort all the elements among all the groups

130 Views Asked by At

my question is like this: I have sales data from different cities:

SHOP NAME | SALES AMOUNT | CITY
shop A,     5000           New York
shop B,     4000           New York
shop C,     3000           New York
shop D,     1800           Boston
shop E,     1500           Boston
shop F,     1300           Boston

Now I want top 2 sales shop for every city, then arrange the top-2 shops from different cities in the descending order of their sales. So we can get the result for the above example:

shop A,  5000  New York
shop B,  4000  New York
shop D,  1800  Boston
shop E,  1500  Boston  

I know top his aggregations can get top 2 buckets:

POST shop_info/_search
{
    "aggs": {
        "top_tags": {
            "terms": {
                "field": "city_id",
                "field": "sales",
                "size": 3
            },
            "aggs": {
                "top_sales_hits": {
                    "top_hits": {
                        "sort": [
                            {
                                "sales": {
                                    "order": "desc"
                                }
                            }
                        ],
                        "_source": {
                            "includes": [ "sales", "city_id" ]
                        },
                        "size" : 2
                    }
                }
            }
        }
    }
}

but I don't know how to flatten the elements from different buckets:

"buckets": [
        {
          "key": 1487251891000,
          "key_as_string": "2017-02-16 13:31:31",
          "doc_count": 10,
          "top_sales_hits": {
            "hits": {
              "total": 10,
              "max_score": null,
              "hits": [
                {
                  "_index": "shop_info",
                  "_type": "shop_info",
                  "_id": "52",
                  "_score": null,
                  "_source": {
                    "ins_tm": "2017-02-16 13:31:31",
                    "city_id": 12
                  },
                  "sort": [
                    1487251891000
                  ]
                },
                {
                  "_index": "shop_info",
                  "_type": "shop_info",
                  "_id": "48",
                  "_score": null,
                  "_source": {
                    "ins_tm": "2017-02-16 13:31:31",
                    "city_id": 12
                  },
                  "sort": [
                    1487251891000
                  ]
                }
              ]
            }
          }
        },
        {
          "key": 1487251892000,
          "key_as_string": "2017-02-16 13:31:32",
          "doc_count": 10,
          "top_sales_hits": {
            "hits": {
              "total": 10,
              "max_score": null,
              "hits": [
                {
                  "_index": "shop_info",
                  "_type": "shop_info",
                  "_id": "65",
                  "_score": null,
                  "_source": {
                    "ins_tm": "2017-02-16 13:31:32",
                    "city_id": 12
                  },
                  "sort": [
                    1487251892000
                  ]
                },
                {
                  "_index": "shop_info",
                  "_type": "shop_info",
                  "_id": "62",
                  "_score": null,
                  "_source": {
                    "ins_tm": "2017-02-16 13:31:32",
                    "city_id": 12
                  },
                  "sort": [
                    1487251892000
                  ]
                }
              ]
            }
          }
        },

Thank you in advance! Really appreciate for any tips.

0

There are 0 best solutions below