-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix global score update bug in MultiLeafKnnCollector #13463
Merged
+82
−6
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
0e1788a
Demonstrate bug in global score coordination in MultiLeafKnnCollector
a8a7876
add explanation comment
5594cec
propose fix
049597d
license header
7c9288a
changes
69fbe50
remove unnecessary heap clear
e642dee
add comment
65623a1
bring in fix from benwtrent
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 62 additions & 0 deletions
62
lucene/core/src/test/org/apache/lucene/search/knn/TestMultiLeafKnnCollector.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.apache.lucene.search.knn; | ||
|
||
import org.apache.lucene.search.TopKnnCollector; | ||
import org.apache.lucene.tests.util.LuceneTestCase; | ||
import org.apache.lucene.util.hnsw.BlockingFloatHeap; | ||
|
||
public class TestMultiLeafKnnCollector extends LuceneTestCase { | ||
|
||
/** Validates a fix for GH#13462 */ | ||
public void testGlobalScoreCoordination() { | ||
int k = 7; | ||
BlockingFloatHeap globalHeap = new BlockingFloatHeap(k); | ||
MultiLeafKnnCollector collector1 = | ||
new MultiLeafKnnCollector(k, globalHeap, new TopKnnCollector(k, Integer.MAX_VALUE)); | ||
MultiLeafKnnCollector collector2 = | ||
new MultiLeafKnnCollector(k, globalHeap, new TopKnnCollector(k, Integer.MAX_VALUE)); | ||
|
||
// Collect k (7) hits in collector1 with scores [100, 106]: | ||
for (int i = 0; i < k; i++) { | ||
collector1.collect(0, 100f + i); | ||
} | ||
|
||
// The global heap should be updated since k hits were collected, and have a min score of | ||
// 100: | ||
assertEquals(100f, globalHeap.peek(), 0f); | ||
assertEquals(100f, collector1.minCompetitiveSimilarity(), 0f); | ||
|
||
// Collect k (7) hits in collector2 with only two that are competitive (200 and 300), | ||
// which also forces an update of the global heap with collector2's hits. This is a tricky | ||
// case where the heap will not be fully ordered, so it ensures global queue updates don't | ||
// incorrectly short-circuit (see GH#13462): | ||
collector2.collect(0, 10f); | ||
collector2.collect(0, 11f); | ||
collector2.collect(0, 12f); | ||
collector2.collect(0, 13f); | ||
collector2.collect(0, 200f); | ||
collector2.collect(0, 14f); | ||
collector2.collect(0, 300f); | ||
|
||
// At this point, our global heap should contain [102, 103, 104, 105, 106, 200, 300] since | ||
// values 200 and 300 from collector2 should have pushed out 100 and 101 from collector1. | ||
// The min value on the global heap should be 102: | ||
assertEquals(102f, globalHeap.peek(), 0f); | ||
assertEquals(102f, collector2.minCompetitiveSimilarity(), 0f); | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As alternative, we don't need to break, and always offer all values.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I considered that as well and I don't really have a strong opinion either way. Offering everything without short-circuiting is probably a slightly cleaner/simpler solution so maybe that's a better way to go unless performance testing for some reason shows otherwise (but I find it had to imagine we'd see a big difference). That solution removes the need for the scratch array, which is nice.