You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by tu...@apache.org on 2012/03/06 21:55:17 UTC

svn commit: r1297715 - in /incubator/oozie/trunk: core/src/main/conf/hadoop-config.xml core/src/main/conf/oozie-site.xml release-log.txt

Author: tucu
Date: Tue Mar  6 20:55:17 2012
New Revision: 1297715

URL: http://svn.apache.org/viewvc?rev=1297715&view=rev
Log:
OOZIE-738 HadoopAccessorService configs typo/missed value (tucu)

Modified:
    incubator/oozie/trunk/core/src/main/conf/hadoop-config.xml
    incubator/oozie/trunk/core/src/main/conf/oozie-site.xml
    incubator/oozie/trunk/release-log.txt

Modified: incubator/oozie/trunk/core/src/main/conf/hadoop-config.xml
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/core/src/main/conf/hadoop-config.xml?rev=1297715&r1=1297714&r2=1297715&view=diff
==============================================================================
--- incubator/oozie/trunk/core/src/main/conf/hadoop-config.xml (original)
+++ incubator/oozie/trunk/core/src/main/conf/hadoop-config.xml Tue Mar  6 20:55:17 2012
@@ -21,7 +21,12 @@
 
     <property>
         <name>mapreduce.jobtracker.kerberos.principal</name>
-        <value>map/_HOST@${localRealm}</value>
+        <value>mapred/_HOST@${localRealm}</value>
+    </property>
+
+    <property>
+      <name>yarn.resourcemanager.principal</name>
+      <value>yarn/_HOST@${localRealm}</value>
     </property>
 
     <property>

Modified: incubator/oozie/trunk/core/src/main/conf/oozie-site.xml
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/core/src/main/conf/oozie-site.xml?rev=1297715&r1=1297714&r2=1297715&view=diff
==============================================================================
--- incubator/oozie/trunk/core/src/main/conf/oozie-site.xml (original)
+++ incubator/oozie/trunk/core/src/main/conf/oozie-site.xml Tue Mar  6 20:55:17 2012
@@ -226,6 +226,16 @@
     </property>
 
     <property>
+        <name>oozie.service.HadoopAccessorService.hadoop.configurations</name>
+        <value>*=hadoop-config.xml</value>
+        <description>
+            Comma separated AUTHORITY=CONFIG_FILE, where AUTHORITY is the HOST:PORT of
+            the Hadoop service (JobTracker, HDFS). The wildcard '*' configuration is
+            used when there is no exact match for an authority.
+        </description>
+    </property>
+
+    <property>
         <name>oozie.service.WorkflowAppService.system.libpath</name>
         <value>/user/${user.name}/share/lib</value>
         <description>

Modified: incubator/oozie/trunk/release-log.txt
URL: http://svn.apache.org/viewvc/incubator/oozie/trunk/release-log.txt?rev=1297715&r1=1297714&r2=1297715&view=diff
==============================================================================
--- incubator/oozie/trunk/release-log.txt (original)
+++ incubator/oozie/trunk/release-log.txt Tue Mar  6 20:55:17 2012
@@ -1,5 +1,6 @@
 -- Oozie 3.2.0 release
 
+OOZIE-738 HadoopAccessorService configs typo/missed value (tucu)
 OOZIE-737 ooziedb tool does not register SLAEventBean resulting in an incorrect DB creation (tucu)
 OOZIE-736 Add support for configurations per JT/NN (tucu)
 OOZIE-734 Simplify Kerberos/HadoopAccessorService code and remove Kerberos/DoAs code (tucu)