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:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]