File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
server/src/main/java/org/elasticsearch/index/codec/vectors/es818 Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -478,9 +478,6 @@ tests:
478
478
- class : org.elasticsearch.index.codec.vectors.es818.ES818BinaryQuantizedVectorsFormatTests
479
479
method : testSimpleOffHeapSizeFSDir
480
480
issue : https://github.com/elastic/elasticsearch/issues/128800
481
- - class : org.elasticsearch.index.store.DirectIOIT
482
- method : testDirectIOUsed
483
- issue : https://github.com/elastic/elasticsearch/issues/128829
484
481
- class : org.elasticsearch.packaging.test.DockerTests
485
482
method : test150MachineDependentHeap
486
483
issue : https://github.com/elastic/elasticsearch/issues/128120
Original file line number Diff line number Diff line change 57
57
@ SuppressForbidden (reason = "Copied from lucene" )
58
58
public class DirectIOLucene99FlatVectorsReader extends FlatVectorsReader implements OffHeapStats {
59
59
60
- private static final boolean USE_DIRECT_IO = Boolean .parseBoolean (System .getProperty ("vector.rescoring.directio" , "false " ));
60
+ private static final boolean USE_DIRECT_IO = Boolean .parseBoolean (System .getProperty ("vector.rescoring.directio" , "true " ));
61
61
62
62
private static final long SHALLOW_SIZE = RamUsageEstimator .shallowSizeOfInstance (DirectIOLucene99FlatVectorsReader .class );
63
63
You can’t perform that action at this time.
0 commit comments