You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ct...@apache.org on 2017/04/07 12:49:05 UTC

[2/3] hive git commit: HIVE-16394: HoS does not support queue name change in middle of session (Chaoyu Tang, reviewed by Xuefu Zhang, Rui Li)

HIVE-16394: HoS does not support queue name change in middle of session (Chaoyu Tang, reviewed by Xuefu Zhang, Rui Li)


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

Branch: refs/heads/master
Commit: 72fb816b814ee931d8a2c93e1dddcb9478f3674a
Parents: 5ba09e8
Author: Chaoyu Tang <ct...@cloudera.com>
Authored: Fri Apr 7 08:41:46 2017 -0400
Committer: Chaoyu Tang <ct...@cloudera.com>
Committed: Fri Apr 7 08:41:46 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/hive/blob/72fb816b/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 7d4a6a0..7e11649 100644
--- a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
+++ b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
@@ -3689,6 +3689,9 @@ public class HiveConf extends Configuration {
       }
     } else if (name.startsWith("hive.spark")) { // Remote Spark Context property.
       result = true;
+    } else if (name.equals("mapreduce.job.queuename")) {
+      // a special property starting with mapreduce that we would also like to effect if it changes
+      result = true;
     }
 
     return result;