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

cambyzju pushed a commit to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-2.0 by this push:
     new 2ae85e42846 [conf](mysql) opt mysql network timeout to 600s #32545 
(#32739)
2ae85e42846 is described below

commit 2ae85e42846f7cebf66243e7edbeb2c1724d48be
Author: camby <camby...@tencent.com>
AuthorDate: Fri Mar 29 11:12:59 2024 +0800

    [conf](mysql) opt mysql network timeout to 600s #32545 (#32739)
---
 fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java 
b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java
index 55066fab565..efcfec7570e 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java
@@ -604,11 +604,11 @@ public class SessionVariable implements Serializable, 
Writable {
 
     // The number of seconds to wait for a block to be written to a connection 
before aborting the write
     @VariableMgr.VarAttr(name = NET_WRITE_TIMEOUT)
-    public int netWriteTimeout = 60;
+    public int netWriteTimeout = 600;
 
     // The number of seconds to wait for a block to be written to a connection 
before aborting the write
     @VariableMgr.VarAttr(name = NET_READ_TIMEOUT)
-    public int netReadTimeout = 60;
+    public int netReadTimeout = 600;
 
     // The current time zone
     @VariableMgr.VarAttr(name = TIME_ZONE, needForward = true)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to