Class AggregatorFactories
java.lang.Object
org.elasticsearch.search.aggregations.AggregatorFactories
public class AggregatorFactories
extends java.lang.Object
An immutable collection of
AggregatorFactories
.-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AggregatorFactories.Builder
A mutable collection ofAggregationBuilder
s andPipelineAggregationBuilder
s. -
Field Summary
Fields Modifier and Type Field Description static AggregatorFactories
EMPTY
static java.util.regex.Pattern
VALID_AGG_NAME
-
Method Summary
Modifier and Type Method Description static AggregatorFactories.Builder
builder()
int
countAggregators()
Aggregator[]
createSubAggregators(SearchContext searchContext, Aggregator parent, CardinalityUpperBound cardinality)
Create all aggregators so that they can be consumed with multiple buckets.Aggregator[]
createTopLevelAggregators(SearchContext searchContext)
static AggregatorFactories.Builder
parseAggregators(org.elasticsearch.common.xcontent.XContentParser parser)
Parses the aggregation request recursively generating aggregator factories in turn.
-
Field Details
-
VALID_AGG_NAME
public static final java.util.regex.Pattern VALID_AGG_NAME -
EMPTY
-
-
Method Details
-
parseAggregators
public static AggregatorFactories.Builder parseAggregators(org.elasticsearch.common.xcontent.XContentParser parser) throws java.io.IOExceptionParses the aggregation request recursively generating aggregator factories in turn.- Throws:
java.io.IOException
-
builder
-
createSubAggregators
public Aggregator[] createSubAggregators(SearchContext searchContext, Aggregator parent, CardinalityUpperBound cardinality) throws java.io.IOExceptionCreate all aggregators so that they can be consumed with multiple buckets.- Parameters:
cardinality
- Upper bound of the number ofowningBucketOrd
s thatAggregator
s created by this method will be asked to collect.- Throws:
java.io.IOException
-
createTopLevelAggregators
public Aggregator[] createTopLevelAggregators(SearchContext searchContext) throws java.io.IOException- Throws:
java.io.IOException
-
countAggregators
public int countAggregators()- Returns:
- the number of sub-aggregator factories
-