kkrugler opened a new issue #6505: URL: https://github.com/apache/incubator-pinot/issues/6505
In `HadoopSegmentTarPushJobRunner.run()`, this is the code at the very end of the method: ``` java int pushParallelism = _spec.getPushJobSpec().getPushParallelism(); if (pushParallelism < 1) { pushParallelism = segmentsToPush.size(); } // Push from driver try { SegmentPushUtils.pushSegments(_spec, outputDirFS, segmentsToPush); } catch (RetriableOperationException | AttemptsExceededException e) { throw new RuntimeException(e); } ``` So it doesn't actually use `pushParallelism`, and `SegmentPushUtils.pushSegments()` does a single-threaded (sequential) push. ---------------------------------------------------------------- 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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org