This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
commit aadbefacb26b0a6641a82cbc68bb6e712db3d73b Author: Yongqiang YANG <[email protected]> AuthorDate: Thu Sep 21 15:21:42 2023 +0800 [enhancement](config) do not abort when a disk is broken (#24692) --- 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 e17628ec6e..e0e765da77 100644 --- a/be/src/common/config.cpp +++ b/be/src/common/config.cpp @@ -281,7 +281,7 @@ DEFINE_String(storage_root_path, "${DORIS_HOME}/storage"); DEFINE_Bool(storage_strict_check_incompatible_old_format, "true"); // BE process will exit if the percentage of error disk reach this value. -DEFINE_mInt32(max_percentage_of_error_disk, "0"); +DEFINE_mInt32(max_percentage_of_error_disk, "100"); DEFINE_mInt32(default_num_rows_per_column_file_block, "1024"); // pending data policy DEFINE_mInt32(pending_data_expire_time_sec, "1800"); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
