chenhao7253886 commented on a change in pull request #851: Parallel fragment
exec instance
URL: https://github.com/apache/incubator-doris/pull/851#discussion_r270850597
##########
File path: fe/src/main/java/org/apache/doris/qe/SessionVariable.java
##########
@@ -418,7 +414,19 @@ public void setDisableColocateJoin(boolean
disableColocateJoin) {
this.disableColocateJoin = disableColocateJoin;
}
- // Serialize to thrift object
+ public int getParallelExecInstanceNum() {
+ return parallelExecInstanceNum;
+ }
+
+ public void setParallelExecInstanceNum(int parallelExecInstanceNum) {
+ if (parallelExecInstanceNum < MIN_EXEC_INSTANCE_NUM) {
Review comment:
ParallelExecInstanceNum should have a upper boundary,such as 32, 64 or 128.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]