This is an automated email from the ASF dual-hosted git repository.
dataroaring 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 00c9a4eb2f6 [chore](cloud) set the default value of
skip_writing_empty_rowset_meta to false and add it to fuzzy (#55171)
00c9a4eb2f6 is described below
commit 00c9a4eb2f65d2f19d65e04f09a9ea9f2a359087
Author: Xin Liao <[email protected]>
AuthorDate: Sun Aug 24 16:27:23 2025 +0800
[chore](cloud) set the default value of skip_writing_empty_rowset_meta to
false and add it to fuzzy (#55171)
Related PR: #54395
---
be/src/cloud/config.cpp | 2 +-
be/src/common/config.cpp | 2 ++
regression-test/pipeline/cloud_p0/conf/be_custom.conf | 1 +
3 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/be/src/cloud/config.cpp b/be/src/cloud/config.cpp
index b60e5efbfeb..7610a7c7322 100644
--- a/be/src/cloud/config.cpp
+++ b/be/src/cloud/config.cpp
@@ -91,7 +91,7 @@ DEFINE_mInt32(meta_service_conflict_error_retry_times, "10");
DEFINE_Bool(enable_check_storage_vault, "true");
-DEFINE_mBool(skip_writing_empty_rowset_metadata, "true");
+DEFINE_mBool(skip_writing_empty_rowset_metadata, "false");
DEFINE_mInt64(warmup_tablet_replica_info_cache_ttl_sec, "600");
diff --git a/be/src/common/config.cpp b/be/src/common/config.cpp
index 52cb73ce491..e041cd2d594 100644
--- a/be/src/common/config.cpp
+++ b/be/src/common/config.cpp
@@ -2039,6 +2039,8 @@ Status set_fuzzy_configs() {
((distribution(*generator) % 2) == 0) ? "true" : "false";
fuzzy_field_and_value["string_overflow_size"] =
((distribution(*generator) % 2) == 0) ? "10" : "4294967295";
+ fuzzy_field_and_value["skip_writing_empty_rowset_metadata"] =
+ ((distribution(*generator) % 2) == 0) ? "true" : "false";
std::uniform_int_distribution<int64_t> distribution2(-2, 10);
fuzzy_field_and_value["segments_key_bounds_truncation_threshold"] =
diff --git a/regression-test/pipeline/cloud_p0/conf/be_custom.conf
b/regression-test/pipeline/cloud_p0/conf/be_custom.conf
index 588b6173d9a..95708e868d5 100644
--- a/regression-test/pipeline/cloud_p0/conf/be_custom.conf
+++ b/regression-test/pipeline/cloud_p0/conf/be_custom.conf
@@ -46,3 +46,4 @@ large_cumu_compaction_task_min_thread_num=3
# So feature has bug, so by default is false, only open it in pipeline to
observe
enable_parquet_page_index=true
+enable_fuzzy_mode=true
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]