Hi, I'm trying to get a simple aggregation, but looks like the size of the results in the bucket is always limited to 10, I haven't found a way to increase this, I'd like to have all the distinct elements returned. Here's my query, basically built from the documentation: https://www.elastic.co/guide/en/elasticsearch/guide/current/_scoping_aggregations.html
POST users/_search
{
"size": 0,
"aggs": {
"distinct_users": {
"terms": {
"field": "country"
}
}
}
}