File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
server/src/main/java/org/elasticsearch/search/vectors Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 1010
1111import org .apache .lucene .search .knn .KnnSearchStrategy ;
1212import org .apache .lucene .util .SetOnce ;
13+ import org .elasticsearch .index .codec .vectors .cluster .NeighborQueue ;
14+ import org .elasticsearch .logging .LogManager ;
15+ import org .elasticsearch .logging .Logger ;
1316
1417import java .util .Objects ;
1518import java .util .concurrent .atomic .LongAccumulator ;
1619
1720public class IVFKnnSearchStrategy extends KnnSearchStrategy {
21+ private static final Logger logger = LogManager .getLogger (IVFKnnSearchStrategy .class );
1822 private final float visitRatio ;
1923 private SetOnce <AbstractMaxScoreKnnCollector > collector = new SetOnce <>();
2024 private final LongAccumulator accumulator ;
You can’t perform that action at this time.
0 commit comments