YARN-3158. Correct log messages in ResourceTrackerService. Contributed
by Varun Saxena
(cherry picked from commit 99f6bd4f7a
)
This commit is contained in:
parent
b5d6f76c6a
commit
5f0495689f
|
@ -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
|
||||
|
|
|
@ -209,14 +209,14 @@ public class ResourceTrackerService extends AbstractService implements
|
|||
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;
|
||||
|
|
Loading…
Reference in New Issue