1
0
Prechádzať zdrojové kódy

Backport HADOOP-3907 from trunk (svn merge -c 1358892). (harsh)

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1359179 13f79535-47bb-0310-9956-ffa450edef68
Robert Joseph Evans 13 rokov pred
rodič
commit
4a69037c35

+ 3 - 0
hadoop-mapreduce-project/CHANGES.txt

@@ -50,6 +50,9 @@ Release 0.23.3 - UNRELEASED
     MAPREDUCE-3906. Fix inconsistency in documentation regarding
     MAPREDUCE-3906. Fix inconsistency in documentation regarding
     mapreduce.jobhistory.principal. (Eugene Koontz via harsh)
     mapreduce.jobhistory.principal. (Eugene Koontz via harsh)
 
 
+    MAPREDUCE-3907. Document entries mapred-default.xml for the
+    jobhistory server. (Eugene Koontz via harsh)
+
   OPTIMIZATIONS
   OPTIMIZATIONS
 
 
     MAPREDUCE-3850. Avoid redundant calls for tokens in TokenCache (Daryn
     MAPREDUCE-3850. Avoid redundant calls for tokens in TokenCache (Daryn

+ 18 - 1
hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml

@@ -1276,7 +1276,7 @@
 <property>
 <property>
   <name>mapreduce.jobhistory.address</name>
   <name>mapreduce.jobhistory.address</name>
   <value>0.0.0.0:10020</value>
   <value>0.0.0.0:10020</value>
-  <description>MapReduce JobHistory Server host:port</description>
+  <description>MapReduce JobHistory Server IPC host:port</description>
 </property>
 </property>
 
 
 <property>
 <property>
@@ -1285,4 +1285,21 @@
   <description>MapReduce JobHistory Server Web UI host:port</description>
   <description>MapReduce JobHistory Server Web UI host:port</description>
 </property>
 </property>
 
 
+<property>
+  <name>mapreduce.jobhistory.keytab</name>
+  <description>
+    Location of the kerberos keytab file for the MapReduce
+    JobHistory Server.
+  </description>
+  <value>/etc/security/keytab/jhs.service.keytab</value>
+</property>
+
+<property>
+  <name>mapreduce.jobhistory.principal</name>
+  <description>
+    Kerberos principal name for the MapReduce JobHistory Server.
+  </description>
+  <value>jhs/_HOST@REALM.TLD</value>
+</property>
+
 </configuration>
 </configuration>