I have bellow query to group result, what i want to add to this query is to sort grouped values alphabetically.
GET promote_kmp/audit_table/_search
{
"aggs":{
"group_by_table_name":{
"terms":{
"field":"table_name",
"size":1000000000
}
}
}
}