zhuzhurk commented on a change in pull request #17952:
URL: https://github.com/apache/flink/pull/17952#discussion_r764830721



##########
File path: 
flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/adaptivebatch/DefaultVertexParallelismDecider.java
##########
@@ -54,11 +54,13 @@ private DefaultVertexParallelismDecider(
             MemorySize dataVolumePerTask,
             int defaultSourceParallelism) {
 
-        checkArgument(minParallelism > 0, "Invalid minimum parallelism.");
+        checkArgument(minParallelism > 0, "The minimum parallelism must be 
larger than 0.");
         checkArgument(
                 maxParallelism >= minParallelism,
-                "Maximum parallelism should greater than minimum 
parallelism.");
-        checkArgument(defaultSourceParallelism > 0, "Invalid default source 
parallelism.");
+                "Maximum parallelism should be larger or equal than minimum 
parallelism.");

Review comment:
       larger or equal than -> greater than or equal to the




-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to