Class GeoGridAggregator<T extends InternalGeoGrid>
- java.lang.Object
-
- org.elasticsearch.search.aggregations.BucketCollector
-
- org.elasticsearch.search.aggregations.Aggregator
-
- org.elasticsearch.search.aggregations.AggregatorBase
-
- org.elasticsearch.search.aggregations.bucket.BucketsAggregator
-
- org.elasticsearch.search.aggregations.bucket.geogrid.GeoGridAggregator<T>
-
- All Implemented Interfaces:
Closeable,AutoCloseable,Collector,Releasable
- Direct Known Subclasses:
GeoHashGridAggregator,GeoTileGridAggregator
public abstract class GeoGridAggregator<T extends InternalGeoGrid> extends BucketsAggregator
Aggregates data expressed as longs (for efficiency's sake) but formats results as aggregation-specific strings.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.elasticsearch.search.aggregations.Aggregator
Aggregator.Parser, Aggregator.SubAggCollectionMode
-
-
Field Summary
Fields Modifier and Type Field Description protected LongHashbucketOrdsprotected intrequiredSizeprotected intshardSizeprotected CellIdSourcevaluesSource-
Fields inherited from class org.elasticsearch.search.aggregations.AggregatorBase
collectableSubAggregators, context, DEFAULT_WEIGHT, name, parent, subAggregators
-
Fields inherited from class org.elasticsearch.search.aggregations.BucketCollector
NO_OP_COLLECTOR
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InternalGeoGridbuildAggregation(long owningBucketOrdinal)Build an aggregation for data that has been collected intobucket.InternalGeoGridbuildEmptyAggregation()Build an empty aggregation.voiddoClose()Release instance-specific data.LeafBucketCollectorgetLeafCollector(LeafReaderContext ctx, LeafBucketCollector sub)Get aLeafBucketCollectorfor the given ctx, which should delegate to the given collector.ScoreModescoreMode()Most aggregators don't need scores, make sure to extend this method if your aggregator needs them.-
Methods inherited from class org.elasticsearch.search.aggregations.bucket.BucketsAggregator
bucketAggregations, bucketDocCount, bucketEmptyAggregations, close, collectBucket, collectExistingBucket, consumeBucketsAndMaybeBreak, getDocCounts, grow, incrementBucketDocCount, maxBucketOrd, mergeBuckets
-
Methods inherited from class org.elasticsearch.search.aggregations.AggregatorBase
addRequestCircuitBreakerBytes, buildEmptySubAggregations, context, doPostCollection, doPreCollection, getLeafCollector, metaData, name, parent, pipelineAggregators, postCollection, preCollection, preGetSubLeafCollectors, subAggregator, subAggregators, toString
-
Methods inherited from class org.elasticsearch.search.aggregations.Aggregator
descendsFromBucketAggregator
-
-
-
-
Field Detail
-
requiredSize
protected final int requiredSize
-
shardSize
protected final int shardSize
-
valuesSource
protected final CellIdSource valuesSource
-
bucketOrds
protected final LongHash bucketOrds
-
-
Method Detail
-
scoreMode
public ScoreMode scoreMode()
Description copied from class:AggregatorBaseMost aggregators don't need scores, make sure to extend this method if your aggregator needs them.- Specified by:
scoreModein interfaceCollector- Overrides:
scoreModein classAggregatorBase
-
getLeafCollector
public LeafBucketCollector getLeafCollector(LeafReaderContext ctx, LeafBucketCollector sub) throws IOException
Description copied from class:AggregatorBaseGet aLeafBucketCollectorfor the given ctx, which should delegate to the given collector.- Specified by:
getLeafCollectorin classAggregatorBase- Throws:
IOException
-
buildAggregation
public InternalGeoGrid buildAggregation(long owningBucketOrdinal) throws IOException
Description copied from class:AggregatorBuild an aggregation for data that has been collected intobucket.- Specified by:
buildAggregationin classAggregator- Throws:
IOException
-
buildEmptyAggregation
public InternalGeoGrid buildEmptyAggregation()
Description copied from class:AggregatorBuild an empty aggregation.- Specified by:
buildEmptyAggregationin classAggregator
-
doClose
public void doClose()
Description copied from class:AggregatorBaseRelease instance-specific data.- Overrides:
doClosein classAggregatorBase
-
-