File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
server/src/main/java/org/elasticsearch/index/codec/vectors/diskbbq Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1+ pr : 135851
2+ summary : DiskBBQ - missing min competitive similarity check on tail docs
3+ area : Vector Search
4+ type : bug
5+ issues : []
Original file line number Diff line number Diff line change @@ -630,6 +630,9 @@ tests:
630630- class : org.elasticsearch.xpack.esql.action.CrossClusterQueryWithPartialResultsIT
631631 method : testOneRemoteClusterPartial
632632 issue : https://github.com/elastic/elasticsearch/issues/124055
633+ - class : org.elasticsearch.datastreams.DataStreamIndexSettingsProviderTests
634+ method : testGetAdditionalIndexSettingsMappingsMerging
635+ issue : https://github.com/elastic/elasticsearch/issues/135884
633636
634637# Examples:
635638#
Original file line number Diff line number Diff line change @@ -568,7 +568,9 @@ public int visit(KnnCollector knnCollector) throws IOException {
568568 qcDist
569569 );
570570 scoredDocs ++;
571- knnCollector .collect (doc , score );
571+ if (knnCollector .minCompetitiveSimilarity () < score ) {
572+ knnCollector .collect (doc , score );
573+ }
572574 } else {
573575 indexInput .skipBytes (quantizedByteLength );
574576 }
You can’t perform that action at this time.
0 commit comments