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
|
YARN-3124. Fixed CS LeafQueue/ParentQueue to use QueueCapacities to track
|
||||||
capacities-by-label. (Wangda Tan via jianhe)
|
capacities-by-label. (Wangda Tan via jianhe)
|
||||||
|
|
||||||
|
YARN-3158. Correct log messages in ResourceTrackerService.
|
||||||
|
(Varun Saxena via xgong)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
YARN-2990. FairScheduler's delay-scheduling always waits for node-local and
|
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) {
|
if (rmApp == null) {
|
||||||
LOG.error("Received finished container : "
|
LOG.error("Received finished container : "
|
||||||
+ containerStatus.getContainerId()
|
+ containerStatus.getContainerId()
|
||||||
+ "for unknown application " + appAttemptId.getApplicationId()
|
+ " for unknown application " + appAttemptId.getApplicationId()
|
||||||
+ " Skipping.");
|
+ " Skipping.");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rmApp.getApplicationSubmissionContext().getUnmanagedAM()) {
|
if (rmApp.getApplicationSubmissionContext().getUnmanagedAM()) {
|
||||||
if (LOG.isDebugEnabled()) {
|
if (LOG.isDebugEnabled()) {
|
||||||
LOG.debug("Ignoring container completion status for unmanaged AM"
|
LOG.debug("Ignoring container completion status for unmanaged AM "
|
||||||
+ rmApp.getApplicationId());
|
+ rmApp.getApplicationId());
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue