Author: smohanty
Date: Thu Apr 18 17:25:29 2013
New Revision: 1469474
URL: http://svn.apache.org/r1469474
Log:
AMBARI-1968. Hadoop Classpath is being overwridden which causes hive
server/metastore to fail. (smohanty)
Modified:
incubator/ambari/trunk/CHANGES.txt
incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp-hadoop/templates/hadoop-env.sh.erb
Modified: incubator/ambari/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/CHANGES.txt?rev=1469474&r1=1469473&r2=1469474&view=diff
==============================================================================
--- incubator/ambari/trunk/CHANGES.txt (original)
+++ incubator/ambari/trunk/CHANGES.txt Thu Apr 18 17:25:29 2013
@@ -760,6 +760,9 @@ Trunk (unreleased changes):
BUG FIXES
+ AMBARI-1968. Hadoop Classpath is being overwridden which causes hive
+ server/metastore to fail. (smohanty)
+
AMBARI-1973. log4j Appender for RCA should be able to write the same database
being used for Ambari Server (oracle/MySql). (smohanty)
Modified:
incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp-hadoop/templates/hadoop-env.sh.erb
URL:
http://svn.apache.org/viewvc/incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp-hadoop/templates/hadoop-env.sh.erb?rev=1469474&r1=1469473&r2=1469474&view=diff
==============================================================================
---
incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp-hadoop/templates/hadoop-env.sh.erb
(original)
+++
incubator/ambari/trunk/ambari-agent/src/main/puppet/modules/hdp-hadoop/templates/hadoop-env.sh.erb
Thu Apr 18 17:25:29 2013
@@ -89,4 +89,5 @@ export HADOOP_IDENT_STRING=$USER
# export HADOOP_NICENESS=10
# Use libraries from standard classpath
-export HADOOP_CLASSPATH=/usr/share/java/*
+JAVA_JDBC_LIBS="/usr/share/java/*"
+export HADOOP_CLASSPATH=${HADOOP_CLASSPATH}:${JAVA_JDBC_LIBS}