This is an automated email from the ASF dual-hosted git repository.
sollhui 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 14331e4974d [enhance](cloud) Increase get version timeout to 30
seconds (#65625)
14331e4974d is described below
commit 14331e4974d33085d070ca23b991f1ffcb4e39fb
Author: hui lai <[email protected]>
AuthorDate: Fri Jul 17 12:57:06 2026 +0800
[enhance](cloud) Increase get version timeout to 30 seconds (#65625)
### What problem does this PR solve?
The default timeout for FE get_version requests to MetaService is 3
seconds, which is too short when MetaService responds slowly. Increase
the default timeout to 30 seconds to reduce premature request failures.
---
fe/fe-common/src/main/java/org/apache/doris/common/Config.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
index d59d4728256..440e5599735 100644
--- a/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
+++ b/fe/fe-common/src/main/java/org/apache/doris/common/Config.java
@@ -3090,7 +3090,7 @@ public class Config extends ConfigBase {
public static int drop_rpc_retry_num = 200;
@ConfField
- public static int default_get_version_from_ms_timeout_second = 3;
+ public static int default_get_version_from_ms_timeout_second = 30;
@ConfField(mutable = true)
public static boolean enable_cloud_multi_replica = false;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]