This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.1 by this push:
new 39b8b2833cf [emhancement](compaction) disable compaction pause on high
memory by default (#61937)
39b8b2833cf is described below
commit 39b8b2833cff1bd4613b5ae95a22ef2d0179931e
Author: Luwei <[email protected]>
AuthorDate: Tue Mar 31 18:59:23 2026 +0800
[emhancement](compaction) disable compaction pause on high memory by
default (#61937)
pick master #61288
High compaction score keeps more rowset metadata,
delete bitmaps, and version graph state in
memory.
Pausing compaction on high memory makes those
high-score tablets harder to merge, so
metadata backlog and memory pressure become
harder to bring down.
Disable this pause by default to avoid
reinforcing that feedback loop.
---
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 e919b644918..6b24fbe707f 100644
--- a/be/src/common/config.cpp
+++ b/be/src/common/config.cpp
@@ -1647,7 +1647,7 @@ DEFINE_mBool(enable_mow_verbose_log, "false");
DEFINE_mInt32(tablet_sched_delay_time_ms, "5000");
DEFINE_mInt32(load_trigger_compaction_version_percent, "66");
DEFINE_mInt64(base_compaction_interval_seconds_since_last_operation, "86400");
-DEFINE_mBool(enable_compaction_pause_on_high_memory, "true");
+DEFINE_mBool(enable_compaction_pause_on_high_memory, "false");
DEFINE_mBool(enable_quorum_success_write, "true");
DEFINE_mDouble(quorum_success_max_wait_multiplier, "0.2");
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]