File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
server/src/main/java/org/opensearch/common Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ protected FeatureFlagSettings(
34
34
FeatureFlags .IDENTITY_SETTING ,
35
35
FeatureFlags .TELEMETRY_SETTING ,
36
36
FeatureFlags .DATETIME_FORMATTER_CACHING_SETTING ,
37
- FeatureFlags .WRITEABLE_REMOTE_INDEX_SETTING ,
37
+ FeatureFlags .TIERED_WRITEABLE_REMOTE_INDEX_SETTING ,
38
38
FeatureFlags .REMOTE_STORE_MIGRATION_EXPERIMENTAL_SETTING ,
39
39
FeatureFlags .PLUGGABLE_CACHE_SETTING
40
40
);
Original file line number Diff line number Diff line change @@ -56,10 +56,10 @@ public class FeatureFlags {
56
56
public static final String DATETIME_FORMATTER_CACHING = "opensearch.experimental.optimization.datetime_formatter_caching.enabled" ;
57
57
58
58
/**
59
- * Gates the functionality of writeable remote index
59
+ * Gates the functionality of writeable remote index having the capability to move across different tiers
60
60
* Once the feature is ready for release, this feature flag can be removed.
61
61
*/
62
- public static final String WRITEABLE_REMOTE_INDEX = "opensearch.experimental.feature.writeable_remote_index .enabled" ;
62
+ public static final String TIERED_WRITEABLE_REMOTE_INDEX = "opensearch.experimental.feature.tiered_writeable_remote_index .enabled" ;
63
63
64
64
/**
65
65
* Gates the functionality of pluggable cache.
@@ -85,8 +85,8 @@ public class FeatureFlags {
85
85
Property .NodeScope
86
86
);
87
87
88
- public static final Setting <Boolean > WRITEABLE_REMOTE_INDEX_SETTING = Setting .boolSetting (
89
- WRITEABLE_REMOTE_INDEX ,
88
+ public static final Setting <Boolean > TIERED_WRITEABLE_REMOTE_INDEX_SETTING = Setting .boolSetting (
89
+ TIERED_WRITEABLE_REMOTE_INDEX ,
90
90
false ,
91
91
Property .NodeScope
92
92
);
@@ -99,7 +99,7 @@ public class FeatureFlags {
99
99
IDENTITY_SETTING ,
100
100
TELEMETRY_SETTING ,
101
101
DATETIME_FORMATTER_CACHING_SETTING ,
102
- WRITEABLE_REMOTE_INDEX_SETTING ,
102
+ TIERED_WRITEABLE_REMOTE_INDEX_SETTING ,
103
103
PLUGGABLE_CACHE_SETTING
104
104
);
105
105
/**
You can’t perform that action at this time.
0 commit comments