@@ -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 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_REMOTE_INDEX = "opensearch.experimental.feature.tiered_remote_index .enabled" ;
63
63
64
64
/**
65
65
* Gates the functionality of pluggable cache.
@@ -85,11 +85,7 @@ 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 ,
90
- false ,
91
- Property .NodeScope
92
- );
88
+ public static final Setting <Boolean > TIERED_REMOTE_INDEX_SETTING = Setting .boolSetting (TIERED_REMOTE_INDEX , false , Property .NodeScope );
93
89
94
90
public static final Setting <Boolean > PLUGGABLE_CACHE_SETTING = Setting .boolSetting (PLUGGABLE_CACHE , false , Property .NodeScope );
95
91
@@ -99,7 +95,7 @@ public class FeatureFlags {
99
95
IDENTITY_SETTING ,
100
96
TELEMETRY_SETTING ,
101
97
DATETIME_FORMATTER_CACHING_SETTING ,
102
- WRITEABLE_REMOTE_INDEX_SETTING ,
98
+ TIERED_REMOTE_INDEX_SETTING ,
103
99
PLUGGABLE_CACHE_SETTING
104
100
);
105
101
/**
0 commit comments