When i use following query, it shows only 10 buckets as default
"aggs": {
"group": {
"terms": {
"field": "user.keyword"
}
when i need to get all buckets i used following query
"aggs": {
"group": {
"terms": {
"field": "user.keyword",
"size":100000
}
Is there any way to get all the documents, without mention 10000.