Skip to content

Commit 9a480c9

Browse files
Merge pull request ClickHouse#79036 from ClickHouse/fix-max_postpone_time_for_failed_replicated_-history-values
Fix history values for max_postpone_time_for_failed_replicated_ settings
2 parents 1f0f8fa + aa2b6f5 commit 9a480c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Core/SettingsChangesHistory.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -725,11 +725,11 @@ const VersionToSettingsChangesMap & getMergeTreeSettingsChangesHistory()
725725
addSettingsChanges(merge_tree_settings_changes_history, "25.4",
726726
{
727727
/// Release closed. Please use 25.5
728+
{"max_postpone_time_for_failed_replicated_fetches_ms", 0, 1ULL * 60 * 1000, "Added new setting to enable postponing fetch tasks in the replication queue."},
729+
{"max_postpone_time_for_failed_replicated_merges_ms", 0, 1ULL * 60 * 1000, "Added new setting to enable postponing merge tasks in the replication queue."},
730+
{"max_postpone_time_for_failed_replicated_tasks_ms", 0, 5ULL * 60 * 1000, "Added new setting to enable postponing tasks in the replication queue."},
728731
{"refresh_parts_interval", 0, 0, "A new setting"},
729732
{"max_merge_delayed_streams_for_parallel_write", 1000, 40, "New setting"},
730-
{"max_postpone_time_for_failed_replicated_fetches_ms", 1ULL * 60 * 1000, 1ULL * 60 * 1000, "Added new setting to enable postponing fetch tasks in the replication queue."},
731-
{"max_postpone_time_for_failed_replicated_merges_ms", 1ULL * 60 * 1000, 1ULL * 60 * 1000, "Added new setting to enable postponing merge tasks in the replication queue."},
732-
{"max_postpone_time_for_failed_replicated_tasks_ms", 5ULL * 60 * 1000, 5ULL * 60 * 1000, "Added new setting to enable postponing tasks in the replication queue."},
733733
{"allow_summing_columns_in_partition_or_order_key", true, false, "New setting to allow summing of partition or sorting key columns"},
734734
/// Release closed. Please use 25.5
735735
});

0 commit comments

Comments
 (0)