मैं एक एकत्रीकरण पर सभी बाल्टियों को सूचीबद्ध करने की कोशिश कर रहा हूं, लेकिन यह केवल पहले 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" : 0.0,
"hits" : [ ]
},
"aggregations" : {
"bairro_count" : {
"buckets" : [ {
"key" : "Barra da Tijuca",
"doc_count" : 5812
}, {
"key" : "Centro",
"doc_count" : 1757
}, {
"key" : "Recreio dos Bandeirantes",
"doc_count" : 1027
}, {
"key" : "Ipanema",
"doc_count" : 927
}, {
"key" : "Copacabana",
"doc_count" : 842
}, {
"key" : "Leblon",
"doc_count" : 833
}, {
"key" : "Botafogo",
"doc_count" : 594
}, {
"key" : "Campo Grande",
"doc_count" : 456
}, {
"key" : "Tijuca",
"doc_count" : 361
}, {
"key" : "Flamengo",
"doc_count" : 328
} ]
}
}
}
मेरे पास इस एकत्रीकरण के लिए 10 से अधिक कुंजी हैं। इस उदाहरण में मेरे पास 145 चाबियां होंगी, और मैं उनमें से प्रत्येक के लिए गिनती चाहता हूं। क्या बाल्टी पर कुछ अंकुरण है? क्या मैं उन सभी को प्राप्त कर सकता हूं?
मैं एलिजाबेथ 1.1.0 का उपयोग कर रहा हूं