You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Remove mmap.extensions setting in favor of nio.extensions
Signed-off-by: David Zane <davizane@amazon.com>
* Update CHANGELOG-3.0.md
Co-authored-by: Andriy Redko <drreta@gmail.com>
Signed-off-by: David Zane <38449481+dzane17@users.noreply.github.com>
---------
Signed-off-by: David Zane <davizane@amazon.com>
Signed-off-by: David Zane <38449481+dzane17@users.noreply.github.com>
Co-authored-by: Andriy Redko <drreta@gmail.com>
- Remove custom Map, List and Set collection classes ([#6871](https://github.com/opensearch-project/OpenSearch/pull/6871))
46
+
- Remove `index.store.hybrid.mmap.extensions` setting in favor of `index.store.hybrid.nio.extensions` setting ([#9392](https://github.com/opensearch-project/OpenSearch/pull/9392))
46
47
47
48
### Fixed
48
49
- Fix 'org.apache.hc.core5.http.ParseException: Invalid protocol version' under JDK 16+ ([#4827](https://github.com/opensearch-project/OpenSearch/pull/4827))
Copy file name to clipboardexpand all lines: server/src/main/java/org/opensearch/index/IndexModule.java
+1-76
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,6 @@
97
97
importjava.util.Collections;
98
98
importjava.util.HashMap;
99
99
importjava.util.HashSet;
100
-
importjava.util.Iterator;
101
100
importjava.util.List;
102
101
importjava.util.Map;
103
102
importjava.util.Objects;
@@ -183,52 +182,7 @@ public final class IndexModule {
183
182
Property.PrivateIndex
184
183
);
185
184
186
-
/** Which lucene file extensions to load with the mmap directory when using hybridfs store. This settings is ignored if {@link #INDEX_STORE_HYBRID_NIO_EXTENSIONS} is set.
0 commit comments