Class InternalAutoDateHistogram
java.lang.Object
org.opensearch.search.aggregations.InternalAggregation
org.opensearch.search.aggregations.InternalMultiBucketAggregation<InternalAutoDateHistogram,InternalAutoDateHistogram.Bucket>
org.opensearch.search.aggregations.bucket.histogram.InternalAutoDateHistogram
- All Implemented Interfaces:
org.opensearch.core.common.io.stream.NamedWriteable
,org.opensearch.core.common.io.stream.Writeable
,org.opensearch.core.xcontent.ToXContent
,org.opensearch.core.xcontent.ToXContentFragment
,Aggregation
,Histogram
,HistogramFactory
,MultiBucketsAggregation
public final class InternalAutoDateHistogram
extends InternalMultiBucketAggregation<InternalAutoDateHistogram,InternalAutoDateHistogram.Bucket>
implements Histogram, HistogramFactory
Implementation of
Histogram
.- Opensearch.internal:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Bucket for the internal auto date histogram aggNested classes/interfaces inherited from class org.opensearch.search.aggregations.InternalMultiBucketAggregation
InternalMultiBucketAggregation.InternalBucket
Nested classes/interfaces inherited from class org.opensearch.search.aggregations.InternalAggregation
InternalAggregation.ReduceContext, InternalAggregation.ReduceContextBuilder
Nested classes/interfaces inherited from interface org.opensearch.search.aggregations.Aggregation
Aggregation.CommonFields
Nested classes/interfaces inherited from interface org.opensearch.core.xcontent.ToXContent
org.opensearch.core.xcontent.ToXContent.DelegatingMapParams, org.opensearch.core.xcontent.ToXContent.MapParams, org.opensearch.core.xcontent.ToXContent.Params
Nested classes/interfaces inherited from interface org.opensearch.core.common.io.stream.Writeable
org.opensearch.core.common.io.stream.Writeable.Reader<V>, org.opensearch.core.common.io.stream.Writeable.WriteableRegistry, org.opensearch.core.common.io.stream.Writeable.Writer<V>
-
Field Summary
Fields inherited from class org.opensearch.search.aggregations.InternalAggregation
metadata, name
Fields inherited from interface org.opensearch.search.aggregations.Aggregation
TYPED_KEYS_DELIMITER
Fields inherited from interface org.opensearch.search.aggregations.bucket.histogram.Histogram
EXTENDED_BOUNDS_FIELD, HARD_BOUNDS_FIELD, INTERVAL_FIELD, KEYED_FIELD, MIN_DOC_COUNT_FIELD, OFFSET_FIELD, ORDER_FIELD
Fields inherited from interface org.opensearch.core.xcontent.ToXContent
EMPTY_PARAMS
-
Constructor Summary
ConstructorDescriptionInternalAutoDateHistogram
(org.opensearch.core.common.io.stream.StreamInput in) Stream from a stream. -
Method Summary
Modifier and TypeMethodDescriptioncreate
(List<InternalAutoDateHistogram.Bucket> buckets) Create a new copy of thisAggregation
with the same settings as thisAggregation
and contains the provided buckets.Create anInternalAggregation
object that wraps the given buckets.createBucket
(Number key, long docCount, InternalAggregations aggregations) Create aMultiBucketsAggregation.Bucket
object that wraps the given key, document count and aggregations.createBucket
(InternalAggregations aggregations, InternalAutoDateHistogram.Bucket prototype) Create a newInternalMultiBucketAggregation.InternalBucket
using the provided prototype bucket and aggregations.protected void
doWriteTo
(org.opensearch.core.common.io.stream.StreamOutput out) org.opensearch.core.xcontent.XContentBuilder
doXContentBody
(org.opensearch.core.xcontent.XContentBuilder builder, org.opensearch.core.xcontent.ToXContent.Params params) boolean
org.opensearch.search.aggregations.bucket.histogram.InternalAutoDateHistogram.BucketInfo
getKey
(MultiBucketsAggregation.Bucket bucket) Get the key for the given bucket.int
int
hashCode()
Given a key returned byHistogramFactory.getKey(org.opensearch.search.aggregations.bucket.MultiBucketsAggregation.Bucket)
, compute the lowest key that is greater than it.reduce
(List<InternalAggregation> aggregations, InternalAggregation.ReduceContext reduceContext) Reduces the given aggregations to a single one and returns it.protected InternalAutoDateHistogram.Bucket
reduceBucket
(List<InternalAutoDateHistogram.Bucket> buckets, InternalAggregation.ReduceContext context) Reduce a list of same-keyed buckets (from multiple shards) to a single bucket.Methods inherited from class org.opensearch.search.aggregations.InternalMultiBucketAggregation
copyWithRewritenBuckets, countInnerBucket, countInnerBucket, forEachBucket, getProperty, mustReduceOnSingleInternalAgg, reducePipelines
Methods inherited from class org.opensearch.search.aggregations.InternalAggregation
getMetadata, getName, getProperty, getType, isMapped, mergePipelineTreeForBWCSerialization, pipelineAggregatorsForBwcSerialization, readSize, sortValue, sortValue, toString, toXContent, writeSize, writeTo
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.opensearch.search.aggregations.Aggregation
getMetadata, getName, getType
Methods inherited from interface org.opensearch.core.xcontent.ToXContent
toXContent
Methods inherited from interface org.opensearch.core.xcontent.ToXContentFragment
isFragment
-
Constructor Details
-
InternalAutoDateHistogram
public InternalAutoDateHistogram(org.opensearch.core.common.io.stream.StreamInput in) throws IOException Stream from a stream.- Throws:
IOException
-
-
Method Details
-
doWriteTo
- Specified by:
doWriteTo
in classInternalAggregation
- Throws:
IOException
-
getInterval
-
getWriteableName
- Specified by:
getWriteableName
in interfaceorg.opensearch.core.common.io.stream.NamedWriteable
-
getBuckets
- Specified by:
getBuckets
in interfaceHistogram
- Specified by:
getBuckets
in interfaceMultiBucketsAggregation
- Specified by:
getBuckets
in classInternalMultiBucketAggregation<InternalAutoDateHistogram,
InternalAutoDateHistogram.Bucket> - Returns:
- The buckets of this aggregation.
-
getTargetBuckets
public int getTargetBuckets() -
getBucketInfo
public org.opensearch.search.aggregations.bucket.histogram.InternalAutoDateHistogram.BucketInfo getBucketInfo() -
create
Description copied from class:InternalMultiBucketAggregation
Create a new copy of thisAggregation
with the same settings as thisAggregation
and contains the provided buckets.- Specified by:
create
in classInternalMultiBucketAggregation<InternalAutoDateHistogram,
InternalAutoDateHistogram.Bucket> - Parameters:
buckets
- the buckets to use in the newAggregation
- Returns:
- the new
Aggregation
-
createBucket
public InternalAutoDateHistogram.Bucket createBucket(InternalAggregations aggregations, InternalAutoDateHistogram.Bucket prototype) Description copied from class:InternalMultiBucketAggregation
Create a newInternalMultiBucketAggregation.InternalBucket
using the provided prototype bucket and aggregations.- Specified by:
createBucket
in classInternalMultiBucketAggregation<InternalAutoDateHistogram,
InternalAutoDateHistogram.Bucket> - Parameters:
aggregations
- the aggregations for the new bucketprototype
- the bucket to use as a prototype- Returns:
- the new bucket
-
reduceBucket
protected InternalAutoDateHistogram.Bucket reduceBucket(List<InternalAutoDateHistogram.Bucket> buckets, InternalAggregation.ReduceContext context) Description copied from class:InternalMultiBucketAggregation
Reduce a list of same-keyed buckets (from multiple shards) to a single bucket. This requires all buckets to have the same key.- Specified by:
reduceBucket
in classInternalMultiBucketAggregation<InternalAutoDateHistogram,
InternalAutoDateHistogram.Bucket>
-
reduce
public InternalAggregation reduce(List<InternalAggregation> aggregations, InternalAggregation.ReduceContext reduceContext) Description copied from class:InternalAggregation
Reduces 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:
reduce
in classInternalAggregation
- See Also:
-
doXContentBody
public org.opensearch.core.xcontent.XContentBuilder doXContentBody(org.opensearch.core.xcontent.XContentBuilder builder, org.opensearch.core.xcontent.ToXContent.Params params) throws IOException - Specified by:
doXContentBody
in classInternalAggregation
- Throws:
IOException
-
getKey
Description copied from interface:HistogramFactory
Get the key for the given bucket. Date histograms must return the number of millis since Epoch of the bucket key while numeric histograms must return the double value of the key.- Specified by:
getKey
in interfaceHistogramFactory
-
nextKey
Description copied from interface:HistogramFactory
Given a key returned byHistogramFactory.getKey(org.opensearch.search.aggregations.bucket.MultiBucketsAggregation.Bucket)
, compute the lowest key that is greater than it.- Specified by:
nextKey
in interfaceHistogramFactory
-
createAggregation
Description copied from interface:HistogramFactory
Create anInternalAggregation
object that wraps the given buckets.- Specified by:
createAggregation
in interfaceHistogramFactory
-
createBucket
public InternalAutoDateHistogram.Bucket createBucket(Number key, long docCount, InternalAggregations aggregations) Description copied from interface:HistogramFactory
Create aMultiBucketsAggregation.Bucket
object that wraps the given key, document count and aggregations.- Specified by:
createBucket
in interfaceHistogramFactory
-
equals
- Overrides:
equals
in classInternalAggregation
-
hashCode
public int hashCode()- Overrides:
hashCode
in classInternalAggregation
-