Browse Source

YARN-20. More information for yarn.resourcemanager.webapp.address in yarn-default.xml (Bartosz Ługowski vai tgraves)
(cherry picked from commit f0f5e3c0751bcadcacd6d91e2c5504803ec3d0a5)

Thomas Graves 10 years ago
parent
commit
638feaaa35

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

@@ -151,6 +151,9 @@ Release 2.8.0 - UNRELEASED
 
 
     YARN-2784. Make POM project names consistent. (Rohith via devaraj)
     YARN-2784. Make POM project names consistent. (Rohith via devaraj)
 
 
+    YARN-20. More information for "yarn.resourcemanager.webapp.address" in 
+    yarn-default.xml (Bartosz Ługowski vai tgraves)
+
   OPTIMIZATIONS
   OPTIMIZATIONS
 
 
     YARN-3339. TestDockerContainerExecutor should pull a single image and not
     YARN-3339. TestDockerContainerExecutor should pull a single image and not

+ 10 - 2
hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/yarn-default.xml

@@ -111,13 +111,21 @@
   </property>
   </property>
 
 
   <property>
   <property>
-    <description>The http address of the RM web application.</description>
+    <description>
+      The http address of the RM web application.
+      If only a host is provided as the value,
+      the webapp will be served on a random port.
+    </description>
     <name>yarn.resourcemanager.webapp.address</name>
     <name>yarn.resourcemanager.webapp.address</name>
     <value>${yarn.resourcemanager.hostname}:8088</value>
     <value>${yarn.resourcemanager.hostname}:8088</value>
   </property>
   </property>
 
 
   <property>
   <property>
-    <description>The https adddress of the RM web application.</description>
+    <description>
+      The https address of the RM web application.
+      If only a host is provided as the value,
+      the webapp will be served on a random port.
+    </description>
     <name>yarn.resourcemanager.webapp.https.address</name>
     <name>yarn.resourcemanager.webapp.https.address</name>
     <value>${yarn.resourcemanager.hostname}:8090</value>
     <value>${yarn.resourcemanager.hostname}:8090</value>
   </property>
   </property>