Class BestBucketsDeferringCollector
java.lang.Object
org.elasticsearch.search.aggregations.BucketCollector
org.elasticsearch.search.aggregations.bucket.DeferringBucketCollector
org.elasticsearch.search.aggregations.bucket.BestBucketsDeferringCollector
- All Implemented Interfaces:
org.apache.lucene.search.Collector
A specialization of
DeferringBucketCollector
that collects all
matches and then is able to replay a given subset of buckets which represent
the survivors from a pruning process performed by the aggregator that owns
this collector.-
Nested Class Summary
Nested classes/interfaces inherited from class org.elasticsearch.search.aggregations.bucket.DeferringBucketCollector
DeferringBucketCollector.WrappedAggregator
-
Field Summary
Fields inherited from class org.elasticsearch.search.aggregations.BucketCollector
NO_OP_COLLECTOR
-
Constructor Summary
ConstructorDescriptionBestBucketsDeferringCollector(org.apache.lucene.search.Query topLevelQuery, org.apache.lucene.search.IndexSearcher searcher, boolean isGlobal)
Sole constructor. -
Method Summary
Modifier and TypeMethodDescriptiongetLeafCollector(org.apache.lucene.index.LeafReaderContext ctx)
void
Post-collection callback.void
Pre collection callback.void
prepareSelectedBuckets(long... selectedBuckets)
Replay the wrapped collector, but only on a selection of buckets.void
rewriteBuckets(LongUnaryOperator howToRewrite)
Merge or prune the selected buckets.org.apache.lucene.search.ScoreMode
void
setDeferredCollector(Iterable<BucketCollector> deferredCollectors)
Set the deferred collectors.wrap(Aggregator in)
Wrap the provided aggregator so that it behaves (almost) as if it had been collected directly.
-
Constructor Details
-
BestBucketsDeferringCollector
public BestBucketsDeferringCollector(org.apache.lucene.search.Query topLevelQuery, org.apache.lucene.search.IndexSearcher searcher, boolean isGlobal)Sole constructor.- Parameters:
isGlobal
- Whether this collector visits all documents (global context)
-
-
Method Details
-
scoreMode
public org.apache.lucene.search.ScoreMode scoreMode() -
setDeferredCollector
Set the deferred collectors.- Specified by:
setDeferredCollector
in classDeferringBucketCollector
-
getLeafCollector
public LeafBucketCollector getLeafCollector(org.apache.lucene.index.LeafReaderContext ctx) throws IOException- Specified by:
getLeafCollector
in interfaceorg.apache.lucene.search.Collector
- Specified by:
getLeafCollector
in classBucketCollector
- Throws:
IOException
-
preCollection
Description copied from class:BucketCollector
Pre collection callback.- Specified by:
preCollection
in classBucketCollector
- Throws:
IOException
-
postCollection
Description copied from class:BucketCollector
Post-collection callback.- Specified by:
postCollection
in classBucketCollector
- Throws:
IOException
-
prepareSelectedBuckets
Replay the wrapped collector, but only on a selection of buckets.- Specified by:
prepareSelectedBuckets
in classDeferringBucketCollector
- Throws:
IOException
-
wrap
Wrap the provided aggregator so that it behaves (almost) as if it had been collected directly.- Overrides:
wrap
in classDeferringBucketCollector
-
rewriteBuckets
Merge or prune the selected buckets.This process rebuilds some packed structures and is O(number_of_collected_docs) so do your best to skip calling it unless you need it.
- Parameters:
howToRewrite
- a unary operator which maps a bucket's ordinal to the ordinal it has after this process. If a bucket's ordinal is mapped to -1 then the bucket is removed entirely.
-