YARN-3444. Fix typo capabililty. Contributed by Gabor Liptak.

Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/0331b4dd
Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/0331b4dd
Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/0331b4dd

Branch: refs/heads/YARN-2928
Commit: 0331b4ddf493f879a05eca9ca7a70f04e636fd3b
Parents: 9a13dce
Author: Akira Ajisaka <aajis...@apache.org>
Authored: Sat Apr 25 06:08:16 2015 +0900
Committer: Zhijie Shen <zjs...@apache.org>
Committed: Mon Apr 27 14:18:50 2015 -0700

----------------------------------------------------------------------
 hadoop-yarn-project/CHANGES.txt                                  | 2 ++
 .../yarn/applications/distributedshell/ApplicationMaster.java    | 4 ++--
 .../apache/hadoop/yarn/applications/distributedshell/Client.java | 4 ++--
 .../src/site/markdown/WritingYarnApplications.md                 | 4 ++--
 4 files changed, 8 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hadoop/blob/0331b4dd/hadoop-yarn-project/CHANGES.txt
----------------------------------------------------------------------
diff --git a/hadoop-yarn-project/CHANGES.txt b/hadoop-yarn-project/CHANGES.txt
index 7150068..fa26329 100644
--- a/hadoop-yarn-project/CHANGES.txt
+++ b/hadoop-yarn-project/CHANGES.txt
@@ -329,6 +329,8 @@ Release 2.8.0 - UNRELEASED
     YARN-3387. Previous AM's container completed status couldn't pass to 
current
     AM if AM and RM restarted during the same time. (sandflee via jianhe)
 
+    YARN-3444. Fix typo capabililty. (Gabor Liptak via aajisaka)
+
 Release 2.7.1 - UNRELEASED
 
   INCOMPATIBLE CHANGES

http://git-wip-us.apache.org/repos/asf/hadoop/blob/0331b4dd/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/src/main/java/org/apache/hadoop/yarn/applications/distributedshell/ApplicationMaster.java
----------------------------------------------------------------------
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/src/main/java/org/apache/hadoop/yarn/applications/distributedshell/ApplicationMaster.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/src/main/java/org/apache/hadoop/yarn/applications/distributedshell/ApplicationMaster.java
index 2470235..add34af 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/src/main/java/org/apache/hadoop/yarn/applications/distributedshell/ApplicationMaster.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/src/main/java/org/apache/hadoop/yarn/applications/distributedshell/ApplicationMaster.java
@@ -638,10 +638,10 @@ public class ApplicationMaster {
     // Dump out information about cluster capability as seen by the
     // resource manager
     int maxMem = response.getMaximumResourceCapability().getMemory();
-    LOG.info("Max mem capabililty of resources in this cluster " + maxMem);
+    LOG.info("Max mem capability of resources in this cluster " + maxMem);
     
     int maxVCores = response.getMaximumResourceCapability().getVirtualCores();
-    LOG.info("Max vcores capabililty of resources in this cluster " + 
maxVCores);
+    LOG.info("Max vcores capability of resources in this cluster " + 
maxVCores);
 
     // A resource ask cannot exceed the max.
     if (containerMemory > maxMem) {

http://git-wip-us.apache.org/repos/asf/hadoop/blob/0331b4dd/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/src/main/java/org/apache/hadoop/yarn/applications/distributedshell/Client.java
----------------------------------------------------------------------
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/src/main/java/org/apache/hadoop/yarn/applications/distributedshell/Client.java
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/src/main/java/org/apache/hadoop/yarn/applications/distributedshell/Client.java
index 033197f..ff2f594 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/src/main/java/org/apache/hadoop/yarn/applications/distributedshell/Client.java
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-applications/hadoop-yarn-applications-distributedshell/src/main/java/org/apache/hadoop/yarn/applications/distributedshell/Client.java
@@ -528,7 +528,7 @@ public class Client {
     // Memory ask has to be a multiple of min and less than max. 
     // Dump out information about cluster capability as seen by the resource 
manager
     int maxMem = appResponse.getMaximumResourceCapability().getMemory();
-    LOG.info("Max mem capabililty of resources in this cluster " + maxMem);
+    LOG.info("Max mem capability of resources in this cluster " + maxMem);
 
     // A resource ask cannot exceed the max. 
     if (amMemory > maxMem) {
@@ -539,7 +539,7 @@ public class Client {
     }                          
 
     int maxVCores = 
appResponse.getMaximumResourceCapability().getVirtualCores();
-    LOG.info("Max virtual cores capabililty of resources in this cluster " + 
maxVCores);
+    LOG.info("Max virtual cores capability of resources in this cluster " + 
maxVCores);
     
     if (amVCores > maxVCores) {
       LOG.info("AM virtual cores specified above max threshold of cluster. " 

http://git-wip-us.apache.org/repos/asf/hadoop/blob/0331b4dd/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/markdown/WritingYarnApplications.md
----------------------------------------------------------------------
diff --git 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/markdown/WritingYarnApplications.md
 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/markdown/WritingYarnApplications.md
index 5e4df9f..03b2964 100644
--- 
a/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/markdown/WritingYarnApplications.md
+++ 
b/hadoop-yarn-project/hadoop-yarn/hadoop-yarn-site/src/site/markdown/WritingYarnApplications.md
@@ -356,10 +356,10 @@ RegisterApplicationMasterResponse response = amRMClient
 // Dump out information about cluster capability as seen by the
 // resource manager
 int maxMem = response.getMaximumResourceCapability().getMemory();
-LOG.info("Max mem capabililty of resources in this cluster " + maxMem);
+LOG.info("Max mem capability of resources in this cluster " + maxMem);
 
 int maxVCores = response.getMaximumResourceCapability().getVirtualCores();
-LOG.info("Max vcores capabililty of resources in this cluster " + maxVCores);
+LOG.info("Max vcores capability of resources in this cluster " + maxVCores);
 
 // A resource ask cannot exceed the max.
 if (containerMemory > maxMem) {

Reply via email to