Skip to content

Commit 5be41d8

Browse files
benwtrentalbertzaharovits
authored andcommitted
Enable madvise by default for all builds (#110159)
This feature flag has been enabled by default for snapshot builds for some time, no significant bumps or changes in rally. This commit will enable it by default, even in release builds.
1 parent de50c01 commit 5be41d8

File tree

2 files changed

+2
-56
lines changed

2 files changed

+2
-56
lines changed

server/src/main/java/org/elasticsearch/index/store/FsDirectoryFactory.java

+2-30
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
import org.apache.lucene.store.SimpleFSLockFactory;
2222
import org.elasticsearch.common.settings.Setting;
2323
import org.elasticsearch.common.settings.Setting.Property;
24-
import org.elasticsearch.common.util.FeatureFlag;
2524
import org.elasticsearch.core.IOUtils;
2625
import org.elasticsearch.index.IndexModule;
2726
import org.elasticsearch.index.IndexSettings;
@@ -36,8 +35,6 @@
3635

3736
public class FsDirectoryFactory implements IndexStorePlugin.DirectoryFactory {
3837

39-
private static final FeatureFlag MADV_RANDOM_FEATURE_FLAG = new FeatureFlag("madv_random");
40-
4138
public static final Setting<LockFactory> INDEX_LOCK_FACTOR_SETTING = new Setting<>("index.store.fs.fs_lock", "native", (s) -> {
4239
return switch (s) {
4340
case "native" -> NativeFSLockFactory.INSTANCE;
@@ -69,20 +66,12 @@ protected Directory newFSDirectory(Path location, LockFactory lockFactory, Index
6966
// Use Lucene defaults
7067
final FSDirectory primaryDirectory = FSDirectory.open(location, lockFactory);
7168
if (primaryDirectory instanceof MMapDirectory mMapDirectory) {
72-
Directory dir = new HybridDirectory(lockFactory, setPreload(mMapDirectory, lockFactory, preLoadExtensions));
73-
if (MADV_RANDOM_FEATURE_FLAG.isEnabled() == false) {
74-
dir = disableRandomAdvice(dir);
75-
}
76-
return dir;
69+
return new HybridDirectory(lockFactory, setPreload(mMapDirectory, lockFactory, preLoadExtensions));
7770
} else {
7871
return primaryDirectory;
7972
}
8073
case MMAPFS:
81-
Directory dir = setPreload(new MMapDirectory(location, lockFactory), lockFactory, preLoadExtensions);
82-
if (MADV_RANDOM_FEATURE_FLAG.isEnabled() == false) {
83-
dir = disableRandomAdvice(dir);
84-
}
85-
return dir;
74+
return setPreload(new MMapDirectory(location, lockFactory), lockFactory, preLoadExtensions);
8675
case SIMPLEFS:
8776
case NIOFS:
8877
return new NIOFSDirectory(location, lockFactory);
@@ -104,23 +93,6 @@ public static MMapDirectory setPreload(MMapDirectory mMapDirectory, LockFactory
10493
return mMapDirectory;
10594
}
10695

107-
/**
108-
* Return a {@link FilterDirectory} around the provided {@link Directory} that forcefully disables {@link IOContext#RANDOM random
109-
* access}.
110-
*/
111-
static Directory disableRandomAdvice(Directory dir) {
112-
return new FilterDirectory(dir) {
113-
@Override
114-
public IndexInput openInput(String name, IOContext context) throws IOException {
115-
if (context.randomAccess) {
116-
context = IOContext.READ;
117-
}
118-
assert context.randomAccess == false;
119-
return super.openInput(name, context);
120-
}
121-
};
122-
}
123-
12496
/**
12597
* Returns true iff the directory is a hybrid fs directory
12698
*/

server/src/test/java/org/elasticsearch/index/store/FsDirectoryFactoryTests.java

-26
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,9 @@
88
package org.elasticsearch.index.store;
99

1010
import org.apache.lucene.store.AlreadyClosedException;
11-
import org.apache.lucene.store.ByteBuffersDirectory;
1211
import org.apache.lucene.store.Directory;
1312
import org.apache.lucene.store.FilterDirectory;
1413
import org.apache.lucene.store.IOContext;
15-
import org.apache.lucene.store.IndexInput;
16-
import org.apache.lucene.store.IndexOutput;
1714
import org.apache.lucene.store.MMapDirectory;
1815
import org.apache.lucene.store.NIOFSDirectory;
1916
import org.apache.lucene.store.NoLockFactory;
@@ -69,29 +66,6 @@ public void testPreload() throws IOException {
6966
}
7067
}
7168

72-
public void testDisableRandomAdvice() throws IOException {
73-
Directory dir = new FilterDirectory(new ByteBuffersDirectory()) {
74-
@Override
75-
public IndexInput openInput(String name, IOContext context) throws IOException {
76-
assertFalse(context.randomAccess);
77-
return super.openInput(name, context);
78-
}
79-
};
80-
Directory noRandomAccessDir = FsDirectoryFactory.disableRandomAdvice(dir);
81-
try (IndexOutput out = noRandomAccessDir.createOutput("foo", IOContext.DEFAULT)) {
82-
out.writeInt(42);
83-
}
84-
// Test the tester
85-
expectThrows(AssertionError.class, () -> dir.openInput("foo", IOContext.RANDOM));
86-
87-
// The wrapped directory shouldn't fail regardless of the IOContext
88-
for (IOContext context : Arrays.asList(IOContext.READ, IOContext.DEFAULT, IOContext.READONCE, IOContext.RANDOM)) {
89-
try (IndexInput in = noRandomAccessDir.openInput("foo", context)) {
90-
assertEquals(42, in.readInt());
91-
}
92-
}
93-
}
94-
9569
private Directory newDirectory(Settings settings) throws IOException {
9670
IndexSettings idxSettings = IndexSettingsModule.newIndexSettings("foo", settings);
9771
Path tempDir = createTempDir().resolve(idxSettings.getUUID()).resolve("0");

0 commit comments

Comments
 (0)