Class HistogramAggregatorFactory
java.lang.Object
org.elasticsearch.search.aggregations.AggregatorFactory
org.elasticsearch.search.aggregations.support.ValuesSourceAggregatorFactory
org.elasticsearch.search.aggregations.bucket.histogram.HistogramAggregatorFactory
Constructs the per-shard aggregator instance for histogram aggregation. Selects the numeric or range field implementation based on the
field type.
-
Field Summary
Fields inherited from class org.elasticsearch.search.aggregations.support.ValuesSourceAggregatorFactory
config
-
Constructor Summary
ConstructorDescriptionHistogramAggregatorFactory
(String name, ValuesSourceConfig config, double interval, double offset, BucketOrder order, boolean keyed, long minDocCount, DoubleBounds extendedBounds, DoubleBounds hardBounds, AggregationContext context, AggregatorFactory parent, AggregatorFactories.Builder subFactoriesBuilder, Map<String, Object> metadata, HistogramAggregatorSupplier aggregatorSupplier) -
Method Summary
Modifier and TypeMethodDescriptionprotected Aggregator
createUnmapped
(Aggregator parent, Map<String, Object> metadata) Create the Aggregator for aValuesSource
that doesn't have values.protected Aggregator
doCreateInternal
(Aggregator parent, CardinalityUpperBound cardinality, Map<String, Object> metadata) Create the Aggregator for aValuesSource
that has values.long
Methods inherited from class org.elasticsearch.search.aggregations.support.ValuesSourceAggregatorFactory
createInternal, getStatsSubtype
Methods inherited from class org.elasticsearch.search.aggregations.AggregatorFactory
create, doValidate, getParent, name
-
Constructor Details
-
HistogramAggregatorFactory
public HistogramAggregatorFactory(String name, ValuesSourceConfig config, double interval, double offset, BucketOrder order, boolean keyed, long minDocCount, DoubleBounds extendedBounds, DoubleBounds hardBounds, AggregationContext context, AggregatorFactory parent, AggregatorFactories.Builder subFactoriesBuilder, Map<String, Object> metadata, HistogramAggregatorSupplier aggregatorSupplier) throws IOException- Throws:
IOException
-
-
Method Details
-
minDocCount
public long minDocCount() -
doCreateInternal
protected Aggregator doCreateInternal(Aggregator parent, CardinalityUpperBound cardinality, Map<String, Object> metadata) throws IOExceptionDescription copied from class:ValuesSourceAggregatorFactory
Create the Aggregator for aValuesSource
that has values.- Specified by:
doCreateInternal
in classValuesSourceAggregatorFactory
cardinality
- Upper bound of the number ofowningBucketOrd
s that theAggregator
created by this method will be asked to collect.- Throws:
IOException
-
createUnmapped
protected Aggregator createUnmapped(Aggregator parent, Map<String, Object> metadata) throws IOExceptionDescription copied from class:ValuesSourceAggregatorFactory
Create the Aggregator for aValuesSource
that doesn't have values.- Specified by:
createUnmapped
in classValuesSourceAggregatorFactory
- Throws:
IOException
-