andygrove commented on code in PR #3845:
URL: https://github.com/apache/datafusion-comet/pull/3845#discussion_r3051873566


##########
docs/source/contributor-guide/native_shuffle.md:
##########
@@ -129,23 +139,33 @@ Native shuffle (`CometExchange`) is selected when all of 
the following condition
 
 2. **Native execution**: `CometExec.getCometIterator()` executes the plan in 
Rust.
 
-3. **Partitioning**: `ShuffleWriterExec` receives batches and routes to the 
appropriate partitioner:
-   - `MultiPartitionShuffleRepartitioner`: For hash/range/round-robin 
partitioning
-   - `SinglePartitionShufflePartitioner`: For single partition (simpler path)
+3. **Partitioning**: `ShuffleWriterExec` receives batches and routes to the 
appropriate partitioner
+   based on the `partitionerMode` configuration:
+   - **Immediate mode** (`ImmediateModePartitioner`): For 
hash/range/round-robin partitioning.
+     As each batch arrives, rows are scattered into per-partition Arrow array 
builders. When a

Review Comment:
   Thanks. I've been experimenting with switching to IPC stream approach. I 
have a draft PR open for this, but it is not fully working yet.



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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to