You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Jimmy Xiang (JIRA)" <ji...@apache.org> on 2015/03/09 20:40:38 UTC

[jira] [Created] (HIVE-9902) Map join small table files need more replications [Spark Branch]

Jimmy Xiang created HIVE-9902:
---------------------------------

             Summary: Map join small table files need more replications [Spark Branch]
                 Key: HIVE-9902
                 URL: https://issues.apache.org/jira/browse/HIVE-9902
             Project: Hive
          Issue Type: Bug
            Reporter: Jimmy Xiang
            Assignee: Jimmy Xiang
             Fix For: spark-branch


We have
{noformat}
replication = (short) Math.min(MIN_REPLICATION, numOfPartitions);
{noformat}
It should be
{noformat}
replication = (short) Math.max(MIN_REPLICATION, numOfPartitions);
{noformat}




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