This is an automated email from the ASF dual-hosted git repository.
dataroaring pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push:
new 412bcccd7a [fix](config) change cold_data_compaction_interval_sec to
2314 days to disalbe it (#21355)
412bcccd7a is described below
commit 412bcccd7af34f41dde24ef2dd35fdcc4d5ebff2
Author: Kang <[email protected]>
AuthorDate: Thu Jun 29 22:18:20 2023 +0800
[fix](config) change cold_data_compaction_interval_sec to 2314 days to
disalbe it (#21355)
---
be/src/common/config.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/be/src/common/config.cpp b/be/src/common/config.cpp
index ef88d9e0ff..a76c289210 100644
--- a/be/src/common/config.cpp
+++ b/be/src/common/config.cpp
@@ -881,7 +881,7 @@ DEFINE_mInt64(generate_cooldown_task_interval_sec, "20");
DEFINE_mInt32(remove_unused_remote_files_interval_sec, "21600"); // 6h
DEFINE_mInt32(confirm_unused_remote_files_interval_sec, "60");
DEFINE_Int32(cold_data_compaction_thread_num, "2");
-DEFINE_mInt32(cold_data_compaction_interval_sec, "1800");
+DEFINE_mInt32(cold_data_compaction_interval_sec, "200000000");
DEFINE_mInt64(generate_cache_cleaner_task_interval_sec, "43200"); // 12 h
DEFINE_Int32(concurrency_per_dir, "2");
DEFINE_mInt64(cooldown_lag_time_sec, "10800"); // 3h
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]