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 2018/03/01 05:48:00 UTC

[jira] [Commented] (HIVE-18610) Performance: ListKeyWrapper does not check for hashcode equals, before comparing members

    [ https://issues.apache.org/jira/browse/HIVE-18610?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16381551#comment-16381551 ] 

Gopal V commented on HIVE-18610:
--------------------------------

This fixes the partial group-by hash function case where the ListKeyWrapper has a deeper Struct inside it.

This is not a correctness issue because if the partial group-by fails to de-dup, the reduce-side GBY will treat identical rows from the same mapper as partial flushes & queries end up producing the right result, but very slowly.

> Performance: ListKeyWrapper does not check for hashcode equals, before comparing members
> ----------------------------------------------------------------------------------------
>
>                 Key: HIVE-18610
>                 URL: https://issues.apache.org/jira/browse/HIVE-18610
>             Project: Hive
>          Issue Type: Bug
>          Components: Query Processor
>    Affects Versions: 3.0.0
>            Reporter: Gopal V
>            Assignee: Gopal V
>            Priority: Major
>         Attachments: HIVE-18610.1.patch, HIVE-18610.2.patch
>
>
> ListKeyWrapper::equals() 
> {code}
>     @Override
>     public boolean equals(Object obj) {
>       if (!(obj instanceof ListKeyWrapper)) {
>         return false;
>       }
>       Object[] copied_in_hashmap = ((ListKeyWrapper) obj).keys;
>       return equalComparer.areEqual(copied_in_hashmap, keys);
>     }
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)