You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by se...@apache.org on 2015/01/27 04:14:37 UTC

svn commit: r1654969 - /hive/branches/llap/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java

Author: sershe
Date: Tue Jan 27 03:14:37 2015
New Revision: 1654969

URL: http://svn.apache.org/r1654969
Log:
Disable LLAP IO for now

Modified:
    hive/branches/llap/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java

Modified: hive/branches/llap/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
URL: http://svn.apache.org/viewvc/hive/branches/llap/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java?rev=1654969&r1=1654968&r2=1654969&view=diff
==============================================================================
--- hive/branches/llap/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java (original)
+++ hive/branches/llap/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java Tue Jan 27 03:14:37 2015
@@ -2005,14 +2005,14 @@ public class HiveConf extends Configurat
         new TimeValidator(TimeUnit.SECONDS),
         "remote spark client JobHandle future timeout value in seconds."),
 
-    LLAP_ENABLED("hive.llap.enabled", true, ""),
+    LLAP_ENABLED("hive.llap.enabled", false, ""),
     LLAP_LOW_LEVEL_CACHE("hive.llap.use.lowlevel.cache", true, ""),
     LLAP_ORC_CACHE_MIN_ALLOC("hive.llap.cache.orc.alloc.min", 128 * 1024, ""),
     LLAP_ORC_CACHE_MAX_ALLOC("hive.llap.cache.orc.alloc.max", 16 * 1024 * 1024, ""),
     LLAP_ORC_CACHE_ARENA_SIZE("hive.llap.cache.orc.arena.size", 128 * 1024 * 1024, ""),
     LLAP_ORC_CACHE_MAX_SIZE("hive.llap.cache.orc.size", 1024L * 1024 * 1024, ""),
     LLAP_REQUEST_THREAD_COUNT("hive.llap.request.thread.count", 16, ""),
-    LLAP_USE_LRFU("hive.llap.use.lrfu", true, ""),
+    LLAP_USE_LRFU("hive.llap.use.lrfu", false, ""),
     LLAP_LRFU_LAMBDA("hive.llap.lrfu.lambda", 0.01f, "")
     ;