Grouped country wise record then i want to get maximum value from each country and id

{

"aggs" : {
    "country_groups" : {
        "terms" : { "field" : "country.keyword",
        		"size":30000
        },
      "aggs":{
			"max_price":{
	        "max": { "field" : "video_count"}
	       }
}
}
}

}

i want to get each maximum record id

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.