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

yiguolei 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 44bb94d5e7 [fe](default parameters) change 
remote_fragment_exec_timeout_ms from 5s to 30s (#23909)
44bb94d5e7 is described below

commit 44bb94d5e7466b128aba5cd8d058f6b5e8b29dbe
Author: yiguolei <[email protected]>
AuthorDate: Wed Sep 6 00:16:23 2023 +0800

    [fe](default parameters) change remote_fragment_exec_timeout_ms from 5s to 
30s (#23909)
---
 docs/en/docs/admin-manual/config/fe-config.md                  | 2 +-
 docs/zh-CN/docs/admin-manual/config/fe-config.md               | 2 +-
 fe/fe-common/src/main/java/org/apache/doris/common/Config.java | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/en/docs/admin-manual/config/fe-config.md 
b/docs/en/docs/admin-manual/config/fe-config.md
index f7dc0f06aa..a3cc21c892 100644
--- a/docs/en/docs/admin-manual/config/fe-config.md
+++ b/docs/en/docs/admin-manual/config/fe-config.md
@@ -613,7 +613,7 @@ max num of thread to handle agent task in agent task 
thread-pool.
 
 #### `remote_fragment_exec_timeout_ms`
 
-Default:5000  (ms)
+Default:30000  (ms)
 
 IsMutable:true
 
diff --git a/docs/zh-CN/docs/admin-manual/config/fe-config.md 
b/docs/zh-CN/docs/admin-manual/config/fe-config.md
index 9126483274..257c716194 100644
--- a/docs/zh-CN/docs/admin-manual/config/fe-config.md
+++ b/docs/zh-CN/docs/admin-manual/config/fe-config.md
@@ -613,7 +613,7 @@ FE向BE的BackendService发送rpc请求时的超时时间,单位:毫秒。
 
 #### `remote_fragment_exec_timeout_ms`
 
-默认值:5000  (ms)
+默认值:30000  (ms)
 
 是否可以动态配置:true
 
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 2c6087cd28..cb33f52646 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
@@ -1627,7 +1627,7 @@ public class Config extends ConfigBase {
      * condition,try to set this timeout longer.
      */
     @ConfField(mutable = true)
-    public static long remote_fragment_exec_timeout_ms = 5000; // 5 sec
+    public static long remote_fragment_exec_timeout_ms = 30000; // 30 sec
 
     /**
      * Max data version of backends serialize block.


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

Reply via email to