This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push:
new a5daa3edc8f [opt](variables) enlarge the default value of
max_allowed_packet (#38697) (#39626)
a5daa3edc8f is described below
commit a5daa3edc8fa5a7444ea0877a03837258ac895f7
Author: Mingyu Chen <[email protected]>
AuthorDate: Tue Aug 20 22:02:01 2024 +0800
[opt](variables) enlarge the default value of max_allowed_packet (#38697)
(#39626)
bp #38697
---
fe/fe-core/src/main/java/org/apache/doris/qe/SessionVariable.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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 cccff906dd7..9e5525a27fa 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
@@ -788,7 +788,7 @@ public class SessionVariable implements Serializable,
Writable {
// this is used to make c3p0 library happy
@VariableMgr.VarAttr(name = MAX_ALLOWED_PACKET)
- public int maxAllowedPacket = 1048576;
+ public int maxAllowedPacket = 16777216;
@VariableMgr.VarAttr(name = AUTO_INCREMENT_INCREMENT)
public int autoIncrementIncrement = 1;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]