Class InternalSingleBucketAggregation
java.lang.Object
org.elasticsearch.search.aggregations.InternalAggregation
org.elasticsearch.search.aggregations.bucket.InternalSingleBucketAggregation
- All Implemented Interfaces:
NamedWriteable,Writeable,org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentFragment,Aggregation,SingleBucketAggregation,HasAggregations
- Direct Known Subclasses:
InternalFilter,InternalGlobal,InternalMissing,InternalNested,InternalReverseNested,InternalSampler
public abstract class InternalSingleBucketAggregation extends InternalAggregation implements SingleBucketAggregation
A base class for all the single bucket aggregations.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.elasticsearch.search.aggregations.InternalAggregation
InternalAggregation.ReduceContext, InternalAggregation.ReduceContextBuilderNested classes/interfaces inherited from interface org.elasticsearch.search.aggregations.Aggregation
Aggregation.CommonFieldsNested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
Fields inherited from class org.elasticsearch.search.aggregations.InternalAggregation
metadata, nameFields inherited from interface org.elasticsearch.search.aggregations.Aggregation
TYPED_KEYS_DELIMITER -
Constructor Summary
Constructors Modifier Constructor Description protectedInternalSingleBucketAggregation(java.lang.String name, long docCount, InternalAggregations aggregations, java.util.Map<java.lang.String,java.lang.Object> metadata)Creates a single bucket aggregation.protectedInternalSingleBucketAggregation(StreamInput in)Read from a stream. -
Method Summary
Modifier and Type Method Description InternalAggregationcopyWithRewritenBuckets(java.util.function.Function<InternalAggregations,InternalAggregations> rewriter)Rewrite the sub-aggregations in the buckets in this aggregation.InternalSingleBucketAggregationcreate(InternalAggregations subAggregations)Create a new copy of thisAggregationwith the same settings as thisAggregationand contains the provided sub-aggregations.protected voiddoWriteTo(StreamOutput out)org.elasticsearch.common.xcontent.XContentBuilderdoXContentBody(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)booleanequals(java.lang.Object obj)voidforEachBucket(java.util.function.Consumer<InternalAggregations> consumer)Run a Consumer over all buckets in this aggregation.InternalAggregationsgetAggregations()longgetDocCount()java.lang.ObjectgetProperty(java.util.List<java.lang.String> path)inthashCode()protected abstract InternalSingleBucketAggregationnewAggregation(java.lang.String name, long docCount, InternalAggregations subAggregations)Create a new empty sub aggregation.InternalAggregationreduce(java.util.List<InternalAggregation> aggregations, InternalAggregation.ReduceContext reduceContext)Reduces the given aggregations to a single one and returns it.InternalAggregationreducePipelines(InternalAggregation reducedAggs, InternalAggregation.ReduceContext reduceContext, PipelineAggregator.PipelineTree pipelineTree)Amulti-bucket agg needs to first reduce the buckets and *their* pipelines before allowing sibling pipelines to materialize.doublesortValue(java.lang.String key)Get value to use when sorting by this aggregation.doublesortValue(AggregationPath.PathElement head, java.util.Iterator<AggregationPath.PathElement> tail)Get value to use when sorting by a descendant of this aggregation.Methods inherited from class org.elasticsearch.search.aggregations.InternalAggregation
getMetadata, getName, getProperty, getType, isMapped, mergePipelineTreeForBWCSerialization, pipelineAggregatorsForBwcSerialization, readSize, toString, toXContent, writeSize, writeToMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.elasticsearch.search.aggregations.Aggregation
getMetadata, getName, getType
-
Constructor Details
-
InternalSingleBucketAggregation
protected InternalSingleBucketAggregation(java.lang.String name, long docCount, InternalAggregations aggregations, java.util.Map<java.lang.String,java.lang.Object> metadata)Creates a single bucket aggregation.- Parameters:
name- The aggregation name.docCount- The document count in the single bucket.aggregations- The already built sub-aggregations that are associated with the bucket.
-
InternalSingleBucketAggregation
Read from a stream.- Throws:
java.io.IOException
-
-
Method Details
-
doWriteTo
- Specified by:
doWriteToin classInternalAggregation- Throws:
java.io.IOException
-
getDocCount
public long getDocCount()- Specified by:
getDocCountin interfaceSingleBucketAggregation- Returns:
- The number of documents in this bucket
-
getAggregations
- Specified by:
getAggregationsin interfaceHasAggregations- Specified by:
getAggregationsin interfaceSingleBucketAggregation- Returns:
- The sub-aggregations of this bucket
-
create
Create a new copy of thisAggregationwith the same settings as thisAggregationand contains the provided sub-aggregations.- Parameters:
subAggregations- the buckets to use in the newAggregation- Returns:
- the new
Aggregation
-
newAggregation
protected abstract InternalSingleBucketAggregation newAggregation(java.lang.String name, long docCount, InternalAggregations subAggregations)Create a new empty sub aggregation. This must be a new instance on each call. -
reduce
public InternalAggregation reduce(java.util.List<InternalAggregation> aggregations, InternalAggregation.ReduceContext reduceContext)Description copied from class:InternalAggregationReduces the given aggregations to a single one and returns it. In most cases, the assumption will be the all given aggregations are of the same type (the same type as this aggregation). For best efficiency, when implementing, try reusing an existing instance (typically the first in the given list) to save on redundant object construction.- Specified by:
reducein classInternalAggregation
-
reducePipelines
public final InternalAggregation reducePipelines(InternalAggregation reducedAggs, InternalAggregation.ReduceContext reduceContext, PipelineAggregator.PipelineTree pipelineTree)Amulti-bucket agg needs to first reduce the buckets and *their* pipelines before allowing sibling pipelines to materialize.- Overrides:
reducePipelinesin classInternalAggregation
-
getProperty
public java.lang.Object getProperty(java.util.List<java.lang.String> path)- Specified by:
getPropertyin classInternalAggregation
-
doXContentBody
public org.elasticsearch.common.xcontent.XContentBuilder doXContentBody(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException- Specified by:
doXContentBodyin classInternalAggregation- Throws:
java.io.IOException
-
sortValue
public final double sortValue(java.lang.String key)Description copied from class:InternalAggregationGet value to use when sorting by this aggregation.- Overrides:
sortValuein classInternalAggregation
-
sortValue
public final double sortValue(AggregationPath.PathElement head, java.util.Iterator<AggregationPath.PathElement> tail)Description copied from class:InternalAggregationGet value to use when sorting by a descendant of this aggregation.- Overrides:
sortValuein classInternalAggregation
-
copyWithRewritenBuckets
public InternalAggregation copyWithRewritenBuckets(java.util.function.Function<InternalAggregations,InternalAggregations> rewriter)Description copied from class:InternalAggregationRewrite the sub-aggregations in the buckets in this aggregation. Returns a copy of this InternalAggregation with the rewritten buckets, or, if there aren't any modifications to the buckets then this method will return this aggregation. Either way, it doesn't modify this aggregation.Implementers of this should call the
rewriteronce per bucket with its InternalAggregations. Therewritershould returnnullif it doen't have any rewriting to do or it should return a new InternalAggregations to make changs.The default implementation throws an exception because most aggregations don't have buckets in them. It should be overridden by aggregations that contain buckets. Implementers should respect the description above.
- Overrides:
copyWithRewritenBucketsin classInternalAggregation
-
forEachBucket
Description copied from class:InternalAggregationRun a Consumer over all buckets in this aggregation.- Overrides:
forEachBucketin classInternalAggregation
-
equals
public boolean equals(java.lang.Object obj)- Overrides:
equalsin classInternalAggregation
-
hashCode
public int hashCode()- Overrides:
hashCodein classInternalAggregation
-