Class UnmappedTerms
java.lang.Object
org.elasticsearch.search.aggregations.InternalAggregation
org.elasticsearch.search.aggregations.InternalMultiBucketAggregation<A,B>
org.elasticsearch.search.aggregations.bucket.terms.InternalTerms<UnmappedTerms,UnmappedTerms.Bucket>
org.elasticsearch.search.aggregations.bucket.terms.UnmappedTerms
- All Implemented Interfaces:
NamedWriteable,Writeable,org.elasticsearch.common.xcontent.ToXContent,org.elasticsearch.common.xcontent.ToXContentFragment,Aggregation,MultiBucketsAggregation,Terms
public class UnmappedTerms extends InternalTerms<UnmappedTerms,UnmappedTerms.Bucket>
Result of the
TermsAggregator when the field is unmapped.-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected static classUnmappedTerms.BucketConcrete type that can't be built because Java needs a concrete type soInternalTerms.Bucketcan have a self type but UnmappedTerms doesn't ever need to build it because it never returns any buckets.Nested classes/interfaces inherited from class org.elasticsearch.search.aggregations.InternalMultiBucketAggregation
InternalMultiBucketAggregation.InternalBucketNested 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 Modifier and Type Field Description static java.lang.StringNAMEFields inherited from class org.elasticsearch.search.aggregations.bucket.terms.InternalTerms
DOC_COUNT_ERROR_UPPER_BOUND_FIELD_NAME, minDocCount, order, requiredSize, SUM_OF_OTHER_DOC_COUNTSFields inherited from class org.elasticsearch.search.aggregations.InternalAggregation
metadata, nameFields inherited from interface org.elasticsearch.search.aggregations.Aggregation
TYPED_KEYS_DELIMITER -
Constructor Summary
Constructors Constructor Description UnmappedTerms(java.lang.String name, BucketOrder order, int requiredSize, long minDocCount, java.util.Map<java.lang.String,java.lang.Object> metadata)UnmappedTerms(StreamInput in)Read from a stream. -
Method Summary
Modifier and Type Method Description protected UnmappedTermscreate(java.lang.String name, java.util.List<UnmappedTerms.Bucket> buckets, long docCountError, long otherDocCount)UnmappedTermscreate(java.util.List<UnmappedTerms.Bucket> buckets)Create a new copy of thisAggregationwith the same settings as thisAggregationand contains the provided buckets.UnmappedTerms.BucketcreateBucket(InternalAggregations aggregations, UnmappedTerms.Bucket prototype)Create a newInternalMultiBucketAggregation.InternalBucketusing the provided prototype bucket and aggregations.protected UnmappedTerms.Bucket[]createBucketsArray(int size)Create an array to hold some buckets.org.elasticsearch.common.xcontent.XContentBuilderdoXContentBody(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)UnmappedTerms.BucketgetBucketByKey(java.lang.String term)Get the bucket for the given term, or null if there is no such bucket.java.util.List<UnmappedTerms.Bucket>getBuckets()Return the sorted list of the buckets in this terms aggregation.longgetDocCountError()Get an upper bound of the error on document counts in this aggregation.protected intgetShardSize()longgetSumOfOtherDocCounts()Return the sum of the document counts of all buckets that did not make it to the top buckets.java.lang.StringgetType()java.lang.StringgetWriteableName()Returns the name of the writeable objectbooleanisMapped()Return true if this aggregation is mapped, and can lead a reduction.InternalAggregationreduce(java.util.List<InternalAggregation> aggregations, InternalAggregation.ReduceContext reduceContext)Reduces the given aggregations to a single one and returns it.protected voidsetDocCountError(long docCountError)protected voidwriteTermTypeInfoTo(StreamOutput out)Methods inherited from class org.elasticsearch.search.aggregations.bucket.terms.InternalTerms
doWriteTo, doXContentCommon, equals, hashCode, reduceBucketMethods inherited from class org.elasticsearch.search.aggregations.InternalMultiBucketAggregation
copyWithRewritenBuckets, countInnerBucket, countInnerBucket, forEachBucket, getProperty, reducePipelinesMethods inherited from class org.elasticsearch.search.aggregations.InternalAggregation
getMetadata, getName, getProperty, mergePipelineTreeForBWCSerialization, pipelineAggregatorsForBwcSerialization, readSize, sortValue, sortValue, 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
-
Field Details
-
NAME
public static final java.lang.String NAME- See Also:
- Constant Field Values
-
-
Constructor Details
-
UnmappedTerms
public UnmappedTerms(java.lang.String name, BucketOrder order, int requiredSize, long minDocCount, java.util.Map<java.lang.String,java.lang.Object> metadata) -
UnmappedTerms
Read from a stream.- Throws:
java.io.IOException
-
-
Method Details
-
writeTermTypeInfoTo
- Specified by:
writeTermTypeInfoToin classInternalTerms<UnmappedTerms,UnmappedTerms.Bucket>- Throws:
java.io.IOException
-
getWriteableName
public java.lang.String getWriteableName()Description copied from interface:NamedWriteableReturns the name of the writeable object -
getType
public java.lang.String getType()- Specified by:
getTypein interfaceAggregation- Overrides:
getTypein classInternalAggregation- Returns:
- a string representing the type of the aggregation. This type is added to the aggregation name in the response, so that it can later be used by clients to determine type of the aggregation and parse it into the proper object.
-
create
Description copied from class:InternalMultiBucketAggregationCreate a new copy of thisAggregationwith the same settings as thisAggregationand contains the provided buckets.- Specified by:
createin classInternalMultiBucketAggregation<UnmappedTerms,UnmappedTerms.Bucket>- Parameters:
buckets- the buckets to use in the newAggregation- Returns:
- the new
Aggregation
-
createBucket
public UnmappedTerms.Bucket createBucket(InternalAggregations aggregations, UnmappedTerms.Bucket prototype)Description copied from class:InternalMultiBucketAggregationCreate a newInternalMultiBucketAggregation.InternalBucketusing the provided prototype bucket and aggregations.- Specified by:
createBucketin classInternalMultiBucketAggregation<UnmappedTerms,UnmappedTerms.Bucket>- Parameters:
aggregations- the aggregations for the new bucketprototype- the bucket to use as a prototype- Returns:
- the new bucket
-
create
protected UnmappedTerms create(java.lang.String name, java.util.List<UnmappedTerms.Bucket> buckets, long docCountError, long otherDocCount)- Specified by:
createin classInternalTerms<UnmappedTerms,UnmappedTerms.Bucket>
-
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.- Overrides:
reducein classInternalTerms<UnmappedTerms,UnmappedTerms.Bucket>
-
isMapped
public boolean isMapped()Description copied from class:InternalAggregationReturn true if this aggregation is mapped, and can lead a reduction. If this agg returns false, it should return itself if asked to lead a reduction- Overrides:
isMappedin classInternalAggregation
-
doXContentBody
public final 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
-
setDocCountError
protected void setDocCountError(long docCountError)- Specified by:
setDocCountErrorin classInternalTerms<UnmappedTerms,UnmappedTerms.Bucket>
-
getShardSize
protected int getShardSize()- Specified by:
getShardSizein classInternalTerms<UnmappedTerms,UnmappedTerms.Bucket>
-
getDocCountError
public long getDocCountError()Description copied from interface:TermsGet an upper bound of the error on document counts in this aggregation. -
getSumOfOtherDocCounts
public long getSumOfOtherDocCounts()Description copied from interface:TermsReturn the sum of the document counts of all buckets that did not make it to the top buckets. -
getBuckets
Description copied from interface:TermsReturn the sorted list of the buckets in this terms aggregation.- Specified by:
getBucketsin interfaceMultiBucketsAggregation- Specified by:
getBucketsin interfaceTerms- Specified by:
getBucketsin classInternalTerms<UnmappedTerms,UnmappedTerms.Bucket>- Returns:
- The buckets of this aggregation.
-
getBucketByKey
Description copied from interface:TermsGet the bucket for the given term, or null if there is no such bucket.- Specified by:
getBucketByKeyin interfaceTerms- Specified by:
getBucketByKeyin classInternalTerms<UnmappedTerms,UnmappedTerms.Bucket>
-
createBucketsArray
Description copied from class:InternalTermsCreate an array to hold some buckets. Used in collecting the results.- Specified by:
createBucketsArrayin classInternalTerms<UnmappedTerms,UnmappedTerms.Bucket>
-