YARN-3158. Correct log messages in ResourceTrackerService. Contributed

by Varun Saxena

(cherry picked from commit 99f6bd4f7a)
This commit is contained in:
Xuan 2015-02-12 16:42:15 -08:00
parent b5d6f76c6a
commit 5f0495689f
2 changed files with 5 additions and 2 deletions

View File

@ -248,6 +248,9 @@ Release 2.7.0 - UNRELEASED
YARN-3124. Fixed CS LeafQueue/ParentQueue to use QueueCapacities to track
capacities-by-label. (Wangda Tan via jianhe)
YARN-3158. Correct log messages in ResourceTrackerService.
(Varun Saxena via xgong)
OPTIMIZATIONS
YARN-2990. FairScheduler's delay-scheduling always waits for node-local and

View File

@ -209,14 +209,14 @@ void handleNMContainerStatus(NMContainerStatus containerStatus, NodeId nodeId) {
if (rmApp == null) {
LOG.error("Received finished container : "
+ containerStatus.getContainerId()
+ "for unknown application " + appAttemptId.getApplicationId()
+ " for unknown application " + appAttemptId.getApplicationId()
+ " Skipping.");
return;
}
if (rmApp.getApplicationSubmissionContext().getUnmanagedAM()) {
if (LOG.isDebugEnabled()) {
LOG.debug("Ignoring container completion status for unmanaged AM"
LOG.debug("Ignoring container completion status for unmanaged AM "
+ rmApp.getApplicationId());
}
return;