我在我的文档中使用弹性搜索和聚合作为请求。我的聚合是特定字段的术语聚合。
我希望能够获得所有聚合,但请求只返回第10个。我尝试使用弹性搜索滚动,但它是在请求时应用而不是在聚合上应用,返回的文档滚动得很好,但聚合仍然是相同的。
有没有人有同样的问题?
这是我在java中的请求:
SearchResponse response = client.prepareSearch("index").setTypes("type").setQuery(QueryBuilders.matchAllQuery())
.addAggregation(AggregationBuilders.terms("TermsAggr").field("aggField")).execute().actionGet();
以下是我如何获得水桶:
Terms terms = response.getAggregations().get("TermsAggr");
Collection<Bucket> buckets = terms.getBuckets();
答案 0 :(得分:5)
聚合结果的默认返回大小为10个项目,这就是您只获得10个结果的原因。您需要将size
对象上的AggregationBuilders
设置为更大的值,以便返回存储桶中的更多或所有值。
SearchResponse response = client.prepareSearch("index")
.setTypes("type")
.setQuery(QueryBuilders.matchAllQuery())
.addAggregation(AggregationBuilders.terms("TermsAggr")
.field("aggField").size(100))
.execute().actionGet();
如果您始终想要返回所有值,则可以设置size(0)
。但是,您需要升级到ES 1.1,因为最近通过Issue 4837将其添加到该版本。