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
ConstructorsConstructorDescriptionBestBucketsDeferringCollector(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)voidPost-collection callback.voidPre collection callback.voidprepareSelectedBuckets(long... selectedBuckets)Replay the wrapped collector, but only on a selection of buckets.voidrewriteBuckets(LongUnaryOperator howToRewrite)Merge or prune the selected buckets.org.apache.lucene.search.ScoreModevoidsetDeferredCollector(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:
setDeferredCollectorin classDeferringBucketCollector
-
getLeafCollector
public LeafBucketCollector getLeafCollector(org.apache.lucene.index.LeafReaderContext ctx) throws IOException- Specified by:
getLeafCollectorin interfaceorg.apache.lucene.search.Collector- Specified by:
getLeafCollectorin classBucketCollector- Throws:
IOException
-
preCollection
Description copied from class:BucketCollectorPre collection callback.- Specified by:
preCollectionin classBucketCollector- Throws:
IOException
-
postCollection
Description copied from class:BucketCollectorPost-collection callback.- Specified by:
postCollectionin classBucketCollector- Throws:
IOException
-
prepareSelectedBuckets
Replay the wrapped collector, but only on a selection of buckets.- Specified by:
prepareSelectedBucketsin classDeferringBucketCollector- Throws:
IOException
-
wrap
Wrap the provided aggregator so that it behaves (almost) as if it had been collected directly.- Overrides:
wrapin 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.
-