You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Zheng Shao (JIRA)" <ji...@apache.org> on 2009/08/15 03:24:14 UTC

[jira] Created: (HIVE-757) Don't send constants from mapper to reducer for Group By queries

Don't send constants from mapper to reducer for Group By queries
----------------------------------------------------------------

                 Key: HIVE-757
                 URL: https://issues.apache.org/jira/browse/HIVE-757
             Project: Hadoop Hive
          Issue Type: Improvement
            Reporter: Zheng Shao
            Assignee: Zheng Shao
             Fix For: 0.5.0


If an aggregation function takes a constant expression, we are still sending it from mapper to reducer, but it's not necessary since we can compute the constants on the reducer side.

This will be useful for some UDAF that have configuration parameters:
{code}
SELECT pageid, logistic_regression("-t 1.0 -b 2.0", col1, col2, col3) FROM mytable GROUP BY pageid;
{code}


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (HIVE-757) Don't send constants from mapper to reducer for Group By queries

Posted by "Namit Jain (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HIVE-757?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Namit Jain updated HIVE-757:
----------------------------

    Fix Version/s:     (was: 0.5.0)

> Don't send constants from mapper to reducer for Group By queries
> ----------------------------------------------------------------
>
>                 Key: HIVE-757
>                 URL: https://issues.apache.org/jira/browse/HIVE-757
>             Project: Hadoop Hive
>          Issue Type: Improvement
>            Reporter: Zheng Shao
>            Assignee: Zheng Shao
>
> If an aggregation function takes a constant expression, we are still sending it from mapper to reducer, but it's not necessary since we can compute the constants on the reducer side.
> This will be useful for some UDAF that have configuration parameters:
> {code}
> SELECT pageid, logistic_regression("-t 1.0 -b 2.0", col1, col2, col3) FROM mytable GROUP BY pageid;
> {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.