This is an automated email from the ASF dual-hosted git repository.
dataroaring 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 e0bb7fa935c [exec](load) change default parallel num from 1 to 8 in no
pipeline exec engine (#28864)
e0bb7fa935c is described below
commit e0bb7fa935ca838641ae10f8c3ad088e727b2db6
Author: HappenLee <[email protected]>
AuthorDate: Sat Dec 23 00:05:44 2023 +0800
[exec](load) change default parallel num from 1 to 8 in no pipeline exec
engine (#28864)
---
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 33319717447..be4e965672f 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
@@ -692,7 +692,7 @@ public class SessionVariable implements Serializable,
Writable {
*/
@VariableMgr.VarAttr(name = PARALLEL_FRAGMENT_EXEC_INSTANCE_NUM,
needForward = true, fuzzy = true,
setter = "setFragmentInstanceNum")
- public int parallelExecInstanceNum = 1;
+ public int parallelExecInstanceNum = 8;
@VariableMgr.VarAttr(name = PARALLEL_PIPELINE_TASK_NUM, fuzzy = true,
needForward = true,
setter = "setPipelineTaskNum")
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]