From cb6b7e4024f00f1f5bb34e587ee551999118a387 Mon Sep 17 00:00:00 2001 From: huanghaibin Date: Fri, 21 Feb 2025 19:52:46 +0800 Subject: [PATCH] [improve](cloud-mow) Make mow stream load retry times more reasonable (#47666) pr #46365 adjust timeout about mow load, thers is no need so much retry times, can reduce to 5. --- be/src/cloud/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/cloud/config.cpp b/be/src/cloud/config.cpp index 59a3c59b5d3b10..7b53380ed929aa 100644 --- a/be/src/cloud/config.cpp +++ b/be/src/cloud/config.cpp @@ -58,7 +58,7 @@ DEFINE_mInt32(refresh_s3_info_interval_s, "60"); DEFINE_mInt32(vacuum_stale_rowsets_interval_s, "300"); DEFINE_mInt32(schedule_sync_tablets_interval_s, "600"); -DEFINE_mInt32(mow_stream_load_commit_retry_times, "10"); +DEFINE_mInt32(mow_stream_load_commit_retry_times, "5"); DEFINE_mBool(save_load_error_log_to_s3, "false");