gene-bordegaray commented on issue #18777:
URL: https://github.com/apache/datafusion/issues/18777#issuecomment-3544669340

   > Question: Can the `SinglePartitioned` mode handle multiple partitions in 
parallel? This is the key goal we want to achieve. And you may want to change 
the title to reflect this parallel need, too
   
   Yes, from my understanding it can. It defines its required input 
distribution as:
   
   ```rust
   AggregateMode::FinalPartitioned | AggregateMode::SinglePartitioned => {
                   
vec![Distribution::HashPartitioned(self.group_by.input_exprs())]
               }
   ```
   
   And then calls execute on each partition individually in its execute 
function.


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