Elasticsearchの集計結果/バケットを10個だけでなくすべて表示する
集約のすべてのバケットを一覧表示しようとしていますが、最初の10個しか表示されていないようです。 私の検索: curl -XPOST "http://localhost:9200/imoveis/_search?pretty=1" -d' { "size": 0, "aggregations": { "bairro_count": { "terms": { "field": "bairro.raw" } } } }' 戻り値: { "took" : 2, "timed_out" : false, "_shards" : { "total" : 5, "successful" : 5, "failed" : 0 }, "hits" : { "total" : 16920, "max_score" : …