You should be able to achieve this with the below query. If you still cannot get it working could you provide a cURL example which reproduces your issue?
curl -XGET "http://localhost:9200/geo/_search" -d' { "size": 0, "aggs": { "geohash" : { "geohash_grid": { "field": "location", "precision": 3 }, "aggs": { "subbounds": { "geo_bounds": { "field": "location" } } } } } }' On Thursday, 24 July 2014 07:46:31 UTC+1, svartalf wrote: > > Is there any way to use geo_bounds as a sub aggregator? > > I have a geohash_grid aggregation, and it will be very useful to get > bounds for each bucket of the data. > Right now my ES 1.3.0 says that he "Could not find aggregator type > [bounds] in [aggregations]]". > -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/bf7f3770-f8f5-453e-bcf8-8321ca6a8f12%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
