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 734473c982b [conf](mysql) opt mysql network timeout to 600s #32545
734473c982b is described below
commit 734473c982b7838803fe63e491ea3f3620170862
Author: camby <[email protected]>
AuthorDate: Sat Mar 23 06:55:57 2024 +0800
[conf](mysql) opt mysql network timeout to 600s #32545
---
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 0ab3658ad89..67f35690914 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
@@ -717,11 +717,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: [email protected]
For additional commands, e-mail: [email protected]