You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by GitBox <gi...@apache.org> on 2019/11/07 08:38:36 UTC

[GitHub] [incubator-doris] morningman opened a new issue #2149: Union node is not executed distributedly

morningman opened a new issue #2149: Union node is not executed distributedly
URL: https://github.com/apache/incubator-doris/issues/2149
 
 
   **Describe the bug**
   `select sum(k1) from (select k1 from A union all select k2 from B) t1;`
   
   Even if the result set from subquery t1 is huge, the AggregateNode which
   handling `sum(k1)` will only be processed at one host.
   
   This is because the UnionNode of the subquery is locked in one host, so does its
   parent AggregateNode.
   
   Each UnionNode has an ExchangeNode to receive data from other node. So the UnionNode
   can be executed distributedly

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org