You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Gopal V (JIRA)" <ji...@apache.org> on 2016/07/16 00:19:20 UTC

[jira] [Updated] (HIVE-14256) CBO: Rewrite aggregate + distinct as 3-stage DAG

     [ https://issues.apache.org/jira/browse/HIVE-14256?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Gopal V updated HIVE-14256:
---------------------------
    Description: 
{code}
select sum(ss_net_profit), count(distinct ss_customer_sk) from store_sales;
{code}

is very slow, while manually sub-aggregating this makes it much faster.

{code}
select sum(v), count(c) from 
( select sum(ss_net_profit) as v, ss_customer_sk as k from store_sales group by ss_customer_sk);
{code}

Query28 in TPC-DS would be an example of whether this would be valuable.

  was:
{code}
select sum(ss_net_profit), count(distinct ss_customer_sk) from store_sales;
{code}

is very slow, while manually sub-aggregating this makes it much faster.

{code}
select sum(v), count(c) from 
( select sum(ss_net_profit) as v, ss_customer_sk as k from store_sales group by ss_customer_sk);
{code}


> CBO: Rewrite aggregate + distinct as 3-stage DAG
> ------------------------------------------------
>
>                 Key: HIVE-14256
>                 URL: https://issues.apache.org/jira/browse/HIVE-14256
>             Project: Hive
>          Issue Type: Improvement
>          Components: CBO
>    Affects Versions: 2.2.0
>            Reporter: Gopal V
>
> {code}
> select sum(ss_net_profit), count(distinct ss_customer_sk) from store_sales;
> {code}
> is very slow, while manually sub-aggregating this makes it much faster.
> {code}
> select sum(v), count(c) from 
> ( select sum(ss_net_profit) as v, ss_customer_sk as k from store_sales group by ss_customer_sk);
> {code}
> Query28 in TPC-DS would be an example of whether this would be valuable.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)