Skip to content

Commit 2bb9867

Browse files
committed
register node setting
1 parent 722f85e commit 2bb9867

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

server/src/main/java/org/elasticsearch/common/settings/ClusterSettings.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@
8989
import org.elasticsearch.index.IndexSettings;
9090
import org.elasticsearch.index.IndexingPressure;
9191
import org.elasticsearch.index.MergePolicyConfig;
92+
import org.elasticsearch.index.codec.CodecService;
9293
import org.elasticsearch.index.engine.ThreadPoolMergeScheduler;
9394
import org.elasticsearch.index.shard.IndexingStatsSettings;
9495
import org.elasticsearch.indices.IndexingMemoryController;
@@ -635,6 +636,7 @@ public void apply(Settings value, Settings current, Settings previous) {
635636
ShardsAvailabilityHealthIndicatorService.REPLICA_UNASSIGNED_BUFFER_TIME,
636637
DataStream.isFailureStoreFeatureFlagEnabled() ? DataStreamFailureStoreSettings.DATA_STREAM_FAILURE_STORED_ENABLED_SETTING : null,
637638
IndexingStatsSettings.RECENT_WRITE_LOAD_HALF_LIFE_SETTING,
638-
TransportGetAllocationStatsAction.CACHE_TTL_SETTING
639+
TransportGetAllocationStatsAction.CACHE_TTL_SETTING,
640+
CodecService.TSDB_DOC_VALUES_OPTIMIZED_MERGE_SETTING
639641
).filter(Objects::nonNull).collect(toSet());
640642
}

0 commit comments

Comments
 (0)