[conf](parallel) Reduce parallel tasks for large cluster (#38196) (#38233)

For large cluster, too many parallel tasks will cause performance issue.
So this PR limit the max parallel tasks in Doris.

pick #38196

<!--Describe your changes.-->
This commit is contained in:
Gabriel
2024-07-23 13:42:31 +08:00
committed by GitHub
parent fdc8b454d2
commit 33e04b12ff

View File

@ -801,7 +801,7 @@ public class SessionVariable implements Serializable, Writable {
public String timeZone = TimeUtils.getSystemTimeZone().getID();
@VariableMgr.VarAttr(name = PARALLEL_EXCHANGE_INSTANCE_NUM)
public int exchangeInstanceParallel = -1;
public int exchangeInstanceParallel = 100;
@VariableMgr.VarAttr(name = SQL_SAFE_UPDATES)
public int sqlSafeUpdates = 0;