Repository: hive Updated Branches: refs/heads/branch-3 96980d300 -> 0b1affb8c refs/heads/master cf8592326 -> 6dfa27c82
HIVE-19362 : enable LLAP cache affinity by default (Sergey Shelukhin, reviewed by Gopal Vijayaraghavan) Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/6dfa27c8 Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/6dfa27c8 Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/6dfa27c8 Branch: refs/heads/master Commit: 6dfa27c82a2008d45323ed3a785ee5180dfad7df Parents: a101c2f Author: sergey <[email protected]> Authored: Tue May 1 13:00:14 2018 -0700 Committer: sergey <[email protected]> Committed: Tue May 1 13:05:48 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/6dfa27c8/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 f137d6c..5a13726 100644 --- a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java +++ b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java @@ -4065,7 +4065,7 @@ public class HiveConf extends Configuration { "llap.daemon.service.port"), LLAP_DAEMON_WEB_SSL("hive.llap.daemon.web.ssl", false, "Whether LLAP daemon web UI should use SSL.", "llap.daemon.service.ssl"), - LLAP_CLIENT_CONSISTENT_SPLITS("hive.llap.client.consistent.splits", false, + LLAP_CLIENT_CONSISTENT_SPLITS("hive.llap.client.consistent.splits", true, "Whether to setup split locations to match nodes on which llap daemons are running, " + "instead of using the locations provided by the split itself. If there is no llap daemon " + "running, fall back to locations provided by the split. This is effective only if " +
