jihoonson commented on a change in pull request #8570: Auto compaction based on 
parallel indexing
URL: https://github.com/apache/incubator-druid/pull/8570#discussion_r333288163
 
 

 ##########
 File path: 
indexing-service/src/main/java/org/apache/druid/indexing/common/task/batch/parallel/ParallelIndexSupervisorTask.java
 ##########
 @@ -397,10 +397,11 @@ public TaskStatus runTask(TaskToolbox toolbox) throws 
Exception
               "firehoseFactory[%s] is not splittable. Running sequentially.",
               baseFirehoseFactory.getClass().getSimpleName()
           );
-        } else if 
(ingestionSchema.getTuningConfig().getMaxNumConcurrentSubTasks() == 1) {
+        } else if 
(ingestionSchema.getTuningConfig().getMaxNumConcurrentSubTasks() <= 1) {
           LOG.warn(
-              "maxNumConcurrentSubTasks is 1. Running sequentially. "
-              + "Please set maxNumConcurrentSubTasks to something higher than 
1 if you want to run in parallel ingestion mode."
+              "maxNumConcurrentSubTasks[%s] is less than 1. Running 
sequentially. Please set maxNumConcurrentSubTasks "
 
 Review comment:
   Thanks! Fixed.

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

Reply via email to