You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by yu...@apache.org on 2015/06/12 10:37:33 UTC

ambari git commit: AMBARI-11865. Hive : Modify hive cli JVM GC args. (Mostafa Mokhtar via yusaku)

Repository: ambari
Updated Branches:
  refs/heads/trunk 4cb8180de -> 8817a7cdc


AMBARI-11865. Hive : Modify hive cli JVM GC args. (Mostafa Mokhtar via yusaku)


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

Branch: refs/heads/trunk
Commit: 8817a7cdc391d9aabe2daec07407e959386a7270
Parents: 4cb8180
Author: Yusaku Sako <yu...@hortonworks.com>
Authored: Fri Jun 12 01:37:07 2015 -0700
Committer: Yusaku Sako <yu...@hortonworks.com>
Committed: Fri Jun 12 01:37:07 2015 -0700

----------------------------------------------------------------------
 .../stacks/HDP/2.2/services/HIVE/configuration/hive-env.xml        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/8817a7cd/ambari-server/src/main/resources/stacks/HDP/2.2/services/HIVE/configuration/hive-env.xml
----------------------------------------------------------------------
diff --git a/ambari-server/src/main/resources/stacks/HDP/2.2/services/HIVE/configuration/hive-env.xml b/ambari-server/src/main/resources/stacks/HDP/2.2/services/HIVE/configuration/hive-env.xml
index 7d1aa2d..f876430 100644
--- a/ambari-server/src/main/resources/stacks/HDP/2.2/services/HIVE/configuration/hive-env.xml
+++ b/ambari-server/src/main/resources/stacks/HDP/2.2/services/HIVE/configuration/hive-env.xml
@@ -38,7 +38,7 @@
     <value>
  if [ "$SERVICE" = "cli" ]; then
    if [ -z "$DEBUG" ]; then
-     export HADOOP_OPTS="$HADOOP_OPTS -XX:NewRatio=12 -Xms10m -XX:MaxHeapFreeRatio=40 -XX:MinHeapFreeRatio=15 -XX:+UseParNewGC -XX:-UseGCOverheadLimit"
+     export HADOOP_OPTS="$HADOOP_OPTS -XX:NewRatio=12 -Xms10m -XX:MaxHeapFreeRatio=40 -XX:MinHeapFreeRatio=15 -XX:+UseNUMA -XX:+UseParallelGC -XX:-UseGCOverheadLimit"
    else
      export HADOOP_OPTS="$HADOOP_OPTS -XX:NewRatio=12 -Xms10m -XX:MaxHeapFreeRatio=40 -XX:MinHeapFreeRatio=15 -XX:-UseGCOverheadLimit"
    fi