alamb commented on issue #7834:
URL:
https://github.com/apache/arrow-datafusion/issues/7834#issuecomment-1767439401
The answers given above match my understanding as well.
However, I agree that the following construction is somewhat strange:
```
RepartitionExec: partitioning=Hash([ip@0], 2), input_partitions=2
RepartitionExec: partitioning=RoundRobinBatch(2), input_partitions=1
```
It would actually be better in my mind if we could use the single operator
@YjyJeff suggestes
```
RepartitionExec: partitioning=Hash([ip@0], 2), input_partitions=2
```
However, as @yukkit says without changing how that operator works the
hashing would then be done a single record batch at a time.
--
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]