21
21
import org .apache .lucene .store .SimpleFSLockFactory ;
22
22
import org .elasticsearch .common .settings .Setting ;
23
23
import org .elasticsearch .common .settings .Setting .Property ;
24
- import org .elasticsearch .common .util .FeatureFlag ;
25
24
import org .elasticsearch .core .IOUtils ;
26
25
import org .elasticsearch .index .IndexModule ;
27
26
import org .elasticsearch .index .IndexSettings ;
36
35
37
36
public class FsDirectoryFactory implements IndexStorePlugin .DirectoryFactory {
38
37
39
- private static final FeatureFlag MADV_RANDOM_FEATURE_FLAG = new FeatureFlag ("madv_random" );
40
-
41
38
public static final Setting <LockFactory > INDEX_LOCK_FACTOR_SETTING = new Setting <>("index.store.fs.fs_lock" , "native" , (s ) -> {
42
39
return switch (s ) {
43
40
case "native" -> NativeFSLockFactory .INSTANCE ;
@@ -69,20 +66,12 @@ protected Directory newFSDirectory(Path location, LockFactory lockFactory, Index
69
66
// Use Lucene defaults
70
67
final FSDirectory primaryDirectory = FSDirectory .open (location , lockFactory );
71
68
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 ));
77
70
} else {
78
71
return primaryDirectory ;
79
72
}
80
73
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 );
86
75
case SIMPLEFS :
87
76
case NIOFS :
88
77
return new NIOFSDirectory (location , lockFactory );
@@ -104,23 +93,6 @@ public static MMapDirectory setPreload(MMapDirectory mMapDirectory, LockFactory
104
93
return mMapDirectory ;
105
94
}
106
95
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
-
124
96
/**
125
97
* Returns true iff the directory is a hybrid fs directory
126
98
*/
0 commit comments