Class BlockGroupingCollector
- All Implemented Interfaces:
Collector,LeafCollector
IndexWriter.addDocuments() or IndexWriter.updateDocuments() API.
This results in faster performance (~25% faster QPS) than the two-pass grouping collectors,
with the tradeoff being that the documents in each group must always be indexed as a block. This
collector also fills in TopGroups.totalGroupCount without requiring the separate AllGroupsCollector. However, this collector does not fill in
the groupValue of each group; this field will always be null.
NOTE: this collector makes no effort to verify the docs were in fact indexed as a block, so it's up to you to ensure this was the case.
See org.apache.lucene.search.grouping for more details including a full code example.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate final classprivate static final classprivate static class -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate intprivate final FieldComparator<?>[]private final intprivate LeafReaderContextprivate intprivate booleanprivate intprivate final BlockGroupingCollector.GroupQueueprivate final Sortprivate final Weightprivate DocIdSetIteratorprivate final LeafFieldComparator[]private final booleanprivate int[]private float[]private booleanprivate final int[]private Scorableprivate intprivate intprivate final intprivate intprivate int -
Constructor Summary
ConstructorsConstructorDescriptionBlockGroupingCollector(Sort groupSort, int topNGroups, boolean needsScores, Weight lastDocPerGroup) Create the single pass collector. -
Method Summary
Modifier and TypeMethodDescriptionvoidcollect(int doc) Called once for every document matching a query, with the unbased document number.protected voiddoSetNextReader(LeafReaderContext readerContext) This method is called before collectingcontext.voidfinish()Hook that gets called once the leaf that is associated with this collector has finished collecting successfully, including when aCollectionTerminatedExceptionis thrown.TopGroups<?> getTopGroups(Sort withinGroupSort, int groupOffset, int withinGroupOffset, int maxDocsPerGroup) Returns the grouped results.private voidIndicates what features are required from the scorer.voidCalled before successive calls toLeafCollector.collect(int).Methods inherited from class org.apache.lucene.search.SimpleCollector
getLeafCollectorMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.lucene.search.LeafCollector
collect, competitiveIterator
-
Field Details
-
pendingSubDocs
private int[] pendingSubDocs -
pendingSubScores
private float[] pendingSubScores -
subDocUpto
private int subDocUpto -
groupSort
-
topNGroups
private final int topNGroups -
lastDocPerGroup
-
needsScores
private final boolean needsScores -
comparators
-
leafComparators
-
reversed
private final int[] reversed -
compIDXEnd
private final int compIDXEnd -
bottomSlot
private int bottomSlot -
queueFull
private boolean queueFull -
currentReaderContext
-
topGroupDoc
private int topGroupDoc -
totalHitCount
private int totalHitCount -
totalGroupCount
private int totalGroupCount -
docBase
private int docBase -
groupEndDocID
private int groupEndDocID -
lastDocPerGroupBits
-
scorer
-
groupQueue
-
groupCompetes
private boolean groupCompetes
-
-
Constructor Details
-
BlockGroupingCollector
public BlockGroupingCollector(Sort groupSort, int topNGroups, boolean needsScores, Weight lastDocPerGroup) Create the single pass collector.- Parameters:
groupSort- TheSortused to sort the groups. The top sorted document within each group according to groupSort, determines how that group sorts against other groups. This must be non-null, ie, if you want to groupSort by relevance use Sort.RELEVANCE.topNGroups- How many top groups to keep.needsScores- true if the collected documents require scores, either because relevance is included in the withinGroupSort or because you plan to pass true for either getSscores or getMaxScores togetTopGroups(org.apache.lucene.search.Sort, int, int, int)lastDocPerGroup- aWeightthat marks the last document in each group.
-
-
Method Details
-
processGroup
- Throws:
IOException
-
getTopGroups
public TopGroups<?> getTopGroups(Sort withinGroupSort, int groupOffset, int withinGroupOffset, int maxDocsPerGroup) throws IOException Returns the grouped results. Returns null if the number of groups collected is <= groupOffset.NOTE: This collector is unable to compute the groupValue per group so it will always be null. This is normally not a problem, as you can obtain the value just like you obtain other values for each matching document (eg, via stored fields, via DocValues, etc.)
- Parameters:
withinGroupSort- TheSortused to sort documents within each group.groupOffset- Which group to start fromwithinGroupOffset- Which document to start from within each groupmaxDocsPerGroup- How many top documents to keep within each group.- Throws:
IOException
-
setScorer
Description copied from interface:LeafCollectorCalled before successive calls toLeafCollector.collect(int). Implementations that need the score of the current document (passed-in toLeafCollector.collect(int)), should save the passed-in Scorer and call scorer.score() when needed.- Specified by:
setScorerin interfaceLeafCollector- Overrides:
setScorerin classSimpleCollector- Throws:
IOException
-
collect
Description copied from interface:LeafCollectorCalled once for every document matching a query, with the unbased document number.Note: The collection of the current segment can be terminated by throwing a
CollectionTerminatedException. In this case, the last docs of the currentLeafReaderContextwill be skipped andIndexSearcherwill swallow the exception and continue collection with the next leaf.Note: This is called in an inner search loop. For good search performance, implementations of this method should not call
StoredFields.document(int)on every hit. Doing so can slow searches by an order of magnitude or more.- Specified by:
collectin interfaceLeafCollector- Specified by:
collectin classSimpleCollector- Throws:
IOException
-
doSetNextReader
Description copied from class:SimpleCollectorThis method is called before collectingcontext.- Overrides:
doSetNextReaderin classSimpleCollector- Throws:
IOException
-
finish
Description copied from interface:LeafCollectorHook that gets called once the leaf that is associated with this collector has finished collecting successfully, including when aCollectionTerminatedExceptionis thrown. This is typically useful to compile data that has been collected on this leaf, e.g. to convert facet counts on leaf ordinals to facet counts on global ordinals. The default implementation does nothing.Note: It can be assumed that this method will only be called once per LeafCollector instance.
- Throws:
IOException
-
scoreMode
Description copied from interface:CollectorIndicates what features are required from the scorer.
-