Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,8 @@ public static final class HybridDirectory extends NIOFSDirectory {
public HybridDirectory(LockFactory lockFactory, MMapDirectory delegate, int asyncPrefetchLimit) throws IOException {
super(delegate.getDirectory(), lockFactory);
this.delegate = delegate;
// disable prefetching, see https://github.com/elastic/elasticsearch/issues/136151
asyncPrefetchLimit = 0;

DirectIODirectory directIO;
try {
Expand Down