This is an automated email from the ASF dual-hosted git repository.

gavinchou pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 997685763c4 [improvement](cloud) Enable packed file and empty rowset 
optimization by default (#63475)
997685763c4 is described below

commit 997685763c48873fbec1a89c1731e78b184ea063
Author: Xin Liao <[email protected]>
AuthorDate: Thu May 28 10:47:41 2026 +0800

    [improvement](cloud) Enable packed file and empty rowset optimization by 
default (#63475)
    
    Problem Summary: Cloud mode kept packed file small-file merge and empty
    rowset metadata skipping disabled by default. This change enables
    enable_packed_file and skip_writing_empty_rowset_metadata by default so
    new cloud deployments merge small files and avoid writing metadata for
    empty rowsets without extra configuration.
    
    ### Release note
    
    Enable cloud packed file small-file merge and empty rowset metadata skip
    optimization by default.
---
 be/src/cloud/config.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/be/src/cloud/config.cpp b/be/src/cloud/config.cpp
index d2de00f39d1..b3695512419 100644
--- a/be/src/cloud/config.cpp
+++ b/be/src/cloud/config.cpp
@@ -115,7 +115,7 @@ DEFINE_mInt32(meta_service_conflict_error_retry_times, 
"10");
 
 DEFINE_Bool(enable_check_storage_vault, "true");
 
-DEFINE_mBool(skip_writing_empty_rowset_metadata, "false");
+DEFINE_mBool(skip_writing_empty_rowset_metadata, "true");
 
 DEFINE_mInt64(cloud_index_change_task_timeout_second, "3600");
 
@@ -134,7 +134,7 @@ DEFINE_mInt64(warm_up_rowset_sync_wait_max_timeout_ms, 
"120000");
 DEFINE_mBool(enable_warmup_immediately_on_new_rowset, "false");
 
 // Packed file manager config
-DEFINE_mBool(enable_packed_file, "false");
+DEFINE_mBool(enable_packed_file, "true");
 DEFINE_mInt64(packed_file_size_threshold_bytes, "5242880"); // 5MB
 DEFINE_mInt64(packed_file_time_threshold_ms, "100");        // 100ms
 DEFINE_mInt64(packed_file_try_lock_timeout_ms, "5");        // 5ms


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to