Class UnmappedSignificantTerms
java.lang.Object
org.elasticsearch.search.aggregations.InternalAggregation
org.elasticsearch.search.aggregations.InternalMultiBucketAggregation<A,B>
org.elasticsearch.search.aggregations.bucket.terms.InternalSignificantTerms<UnmappedSignificantTerms,UnmappedSignificantTerms.Bucket>
org.elasticsearch.search.aggregations.bucket.terms.UnmappedSignificantTerms
- All Implemented Interfaces:
Iterable<SignificantTerms.Bucket>
,NamedWriteable
,Writeable
,org.elasticsearch.common.xcontent.ToXContent
,org.elasticsearch.common.xcontent.ToXContentFragment
,Aggregation
,MultiBucketsAggregation
,SignificantTerms
public class UnmappedSignificantTerms
extends InternalSignificantTerms<UnmappedSignificantTerms,UnmappedSignificantTerms.Bucket>
Result of the running the significant terms aggregation on an unmapped field.
-
Nested Class Summary
Modifier and TypeClassDescriptionprotected static class
Concrete type that can't be built because Java needs a concrete type soInternalTerms.Bucket
can 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.InternalBucket
Nested classes/interfaces inherited from class org.elasticsearch.search.aggregations.InternalAggregation
InternalAggregation.ReduceContext, InternalAggregation.ReduceContextBuilder
Nested classes/interfaces inherited from interface org.elasticsearch.search.aggregations.Aggregation
Aggregation.CommonFields
Nested 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.Params
Nested 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.bucket.terms.InternalSignificantTerms
BG_COUNT, minDocCount, requiredSize, SCORE
Fields inherited from class org.elasticsearch.search.aggregations.InternalAggregation
metadata, name
Fields inherited from interface org.elasticsearch.search.aggregations.Aggregation
TYPED_KEYS_DELIMITER
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
Constructor Summary
ConstructorDescriptionUnmappedSignificantTerms(String name, int requiredSize, long minDocCount, Map<String,Object> metadata)
Read from a stream. -
Method Summary
Modifier and TypeMethodDescriptionprotected UnmappedSignificantTerms
create(long subsetSize, long supersetSize, List<UnmappedSignificantTerms.Bucket> buckets)
create(List<UnmappedSignificantTerms.Bucket> buckets)
Create a new copy of thisAggregation
with the same settings as thisAggregation
and contains the provided buckets.createBucket(InternalAggregations aggregations, UnmappedSignificantTerms.Bucket prototype)
Create a newInternalMultiBucketAggregation.InternalBucket
using the provided prototype bucket and aggregations.protected UnmappedSignificantTerms.Bucket[]
createBucketsArray(int size)
Create an array to hold some buckets.org.elasticsearch.common.xcontent.XContentBuilder
doXContentBody(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)
getBucketByKey(String term)
Get the bucket for the given term, or null if there is no such bucket.protected SignificanceHeuristic
protected long
protected long
getType()
Returns the name of the writeable objectboolean
isMapped()
Return true if this aggregation is mapped, and can lead a reduction.iterator()
reduce(List<InternalAggregation> aggregations, InternalAggregation.ReduceContext reduceContext)
Reduces the given aggregations to a single one and returns it.protected void
Methods inherited from class org.elasticsearch.search.aggregations.bucket.terms.InternalSignificantTerms
doWriteTo, equals, hashCode, reduceBucket
Methods inherited from class org.elasticsearch.search.aggregations.InternalMultiBucketAggregation
copyWithRewritenBuckets, countInnerBucket, countInnerBucket, forEachBucket, getProperty, mustReduceOnSingleInternalAgg, reducePipelines
Methods inherited from class org.elasticsearch.search.aggregations.InternalAggregation
getMetadata, getName, getProperty, 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.elasticsearch.search.aggregations.Aggregation
getMetadata, getName
Methods inherited from interface java.lang.Iterable
forEach, spliterator
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContent
toXContent
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
Field Details
-
NAME
- See Also:
- Constant Field Values
-
-
Constructor Details
-
UnmappedSignificantTerms
-
UnmappedSignificantTerms
Read from a stream.- Throws:
IOException
-
-
Method Details
-
writeTermTypeInfoTo
- Specified by:
writeTermTypeInfoTo
in classInternalSignificantTerms<UnmappedSignificantTerms,UnmappedSignificantTerms.Bucket>
- Throws:
IOException
-
getWriteableName
Description copied from interface:NamedWriteable
Returns the name of the writeable object -
getType
- Specified by:
getType
in interfaceAggregation
- Overrides:
getType
in 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:InternalMultiBucketAggregation
Create a new copy of thisAggregation
with the same settings as thisAggregation
and contains the provided buckets.- Specified by:
create
in classInternalMultiBucketAggregation<UnmappedSignificantTerms,UnmappedSignificantTerms.Bucket>
- Parameters:
buckets
- the buckets to use in the newAggregation
- Returns:
- the new
Aggregation
-
createBucket
public UnmappedSignificantTerms.Bucket createBucket(InternalAggregations aggregations, UnmappedSignificantTerms.Bucket prototype)Description copied from class:InternalMultiBucketAggregation
Create a newInternalMultiBucketAggregation.InternalBucket
using the provided prototype bucket and aggregations.- Specified by:
createBucket
in classInternalMultiBucketAggregation<UnmappedSignificantTerms,UnmappedSignificantTerms.Bucket>
- Parameters:
aggregations
- the aggregations for the new bucketprototype
- the bucket to use as a prototype- Returns:
- the new bucket
-
create
protected UnmappedSignificantTerms create(long subsetSize, long supersetSize, List<UnmappedSignificantTerms.Bucket> buckets)- Specified by:
create
in classInternalSignificantTerms<UnmappedSignificantTerms,UnmappedSignificantTerms.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.- Overrides:
reduce
in classInternalSignificantTerms<UnmappedSignificantTerms,UnmappedSignificantTerms.Bucket>
- See Also:
InternalAggregation.mustReduceOnSingleInternalAgg()
-
isMapped
public boolean isMapped()Description copied from class:InternalAggregation
Return 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:
isMapped
in classInternalAggregation
-
doXContentBody
public org.elasticsearch.common.xcontent.XContentBuilder doXContentBody(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws IOException- Specified by:
doXContentBody
in classInternalAggregation
- Throws:
IOException
-
createBucketsArray
Description copied from class:InternalSignificantTerms
Create an array to hold some buckets. Used in collecting the results.- Specified by:
createBucketsArray
in classInternalSignificantTerms<UnmappedSignificantTerms,UnmappedSignificantTerms.Bucket>
-
iterator
-
getBuckets
- Specified by:
getBuckets
in interfaceMultiBucketsAggregation
- Specified by:
getBuckets
in interfaceSignificantTerms
- Specified by:
getBuckets
in classInternalSignificantTerms<UnmappedSignificantTerms,UnmappedSignificantTerms.Bucket>
- Returns:
- The buckets of this aggregation.
-
getBucketByKey
Description copied from interface:SignificantTerms
Get the bucket for the given term, or null if there is no such bucket. -
getSignificanceHeuristic
- Specified by:
getSignificanceHeuristic
in classInternalSignificantTerms<UnmappedSignificantTerms,UnmappedSignificantTerms.Bucket>
-
getSubsetSize
protected long getSubsetSize()- Specified by:
getSubsetSize
in classInternalSignificantTerms<UnmappedSignificantTerms,UnmappedSignificantTerms.Bucket>
-
getSupersetSize
protected long getSupersetSize()- Specified by:
getSupersetSize
in classInternalSignificantTerms<UnmappedSignificantTerms,UnmappedSignificantTerms.Bucket>
-