mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 04:58:50 +00:00
d7d937300a
Buckets: -------- * terms * range * global * filter * filters * missing * nested * reverse nested * children * significant terms * date range * ip range * range * histogram * date histogram * geo distance * geo hash grid Metrics: -------- * min * max * sum * avg * stats * extended stats * value count * percentiles * percentile rank * cardinality * geo bounds * top hits * scripted metric
36 lines
991 B
Plaintext
36 lines
991 B
Plaintext
[[java-aggs-bucket-global]]
|
|
==== Global Aggregation
|
|
|
|
Here is how you can use
|
|
{ref}/search-aggregations-bucket-global-aggregation.html[Global Aggregation]
|
|
with Java API.
|
|
|
|
|
|
===== Prepare aggregation request
|
|
|
|
Here is an example on how to create the aggregation request:
|
|
|
|
[source,java]
|
|
--------------------------------------------------
|
|
AggregationBuilders
|
|
.global("agg")
|
|
.subAggregation(AggregationBuilders.terms("genders").field("gender"));
|
|
--------------------------------------------------
|
|
|
|
|
|
===== Use aggregation response
|
|
|
|
Import Aggregation definition classes:
|
|
|
|
[source,java]
|
|
--------------------------------------------------
|
|
import org.elasticsearch.search.aggregations.bucket.global.Global;
|
|
--------------------------------------------------
|
|
|
|
[source,java]
|
|
--------------------------------------------------
|
|
// sr is here your SearchResponse object
|
|
Global agg = sr.getAggregations().get("agg");
|
|
agg.getDocCount(); // Doc count
|
|
--------------------------------------------------
|