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:
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user