You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by jc...@apache.org on 2018/05/25 23:13:02 UTC

hive git commit: HIVE-19504: Change default value for hive.auto.convert.join.shuffle.max.size property (Jesus Camacho Rodriguez, reviewed by Vineet Garg, Ashutosh Chauhan)

Repository: hive
Updated Branches:
  refs/heads/master 87e8c738b -> cbebe693d


HIVE-19504: Change default value for hive.auto.convert.join.shuffle.max.size property (Jesus Camacho Rodriguez, reviewed by Vineet Garg, Ashutosh Chauhan)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/cbebe693
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/cbebe693
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/cbebe693

Branch: refs/heads/master
Commit: cbebe693d5c6ed434493c760a549c55250879672
Parents: 87e8c73
Author: Jesus Camacho Rodriguez <jc...@apache.org>
Authored: Fri May 25 16:12:54 2018 -0700
Committer: Jesus Camacho Rodriguez <jc...@apache.org>
Committed: Fri May 25 16:12:54 2018 -0700

----------------------------------------------------------------------
 common/src/java/org/apache/hadoop/hive/conf/HiveConf.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/cbebe693/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
----------------------------------------------------------------------
diff --git a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
index 931533a..3125fc9 100644
--- a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
+++ b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
@@ -2007,7 +2007,7 @@ public class HiveConf extends Configuration {
         "However, if it is on, and the predicted number of entries in hashtable for a given join \n" +
         "input is larger than this number, the join will not be converted to a mapjoin. \n" +
         "The value \"-1\" means no limit."),
-    HIVECONVERTJOINMAXSHUFFLESIZE("hive.auto.convert.join.shuffle.max.size", 10000000L,
+    HIVECONVERTJOINMAXSHUFFLESIZE("hive.auto.convert.join.shuffle.max.size", 10000000000L,
        "If hive.auto.convert.join.noconditionaltask is off, this parameter does not take affect. \n" +
        "However, if it is on, and the predicted size of the larger input for a given join is greater \n" +
        "than this number, the join will not be converted to a dynamically partitioned hash join. \n" +