This is an automated email from the ASF dual-hosted git repository.
yiguolei 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 d83c7148241 [branch-2.1](routine-load) adjusting the default
configuration of routing load (#35753)
d83c7148241 is described below
commit d83c71482415316121841a59588e6ac973e24941
Author: HHoflittlefish777 <[email protected]>
AuthorDate: Sat Jun 1 11:22:21 2024 +0800
[branch-2.1](routine-load) adjusting the default configuration of routing
load (#35753)
#34898
---
fe/fe-common/src/main/java/org/apache/doris/common/Config.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
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 7a921d9214a..9a4e0ececcc 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
@@ -1149,7 +1149,7 @@ public class Config extends ConfigBase {
* the max concurrent routine load task num of a single routine load job
*/
@ConfField(mutable = true, masterOnly = true)
- public static int max_routine_load_task_concurrent_num = 5;
+ public static int max_routine_load_task_concurrent_num = 256;
/**
* the max concurrent routine load task num per BE.
@@ -1158,7 +1158,7 @@ public class Config extends ConfigBase {
* which is the routine load task thread pool max size on BE.
*/
@ConfField(mutable = true, masterOnly = true)
- public static int max_routine_load_task_num_per_be = 5;
+ public static int max_routine_load_task_num_per_be = 1024;
/**
* The max number of files store in SmallFileMgr
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]