YARN-1265. Fair Scheduler chokes on unhealthy node reconnect (Sandy Ryza)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1531147 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1db83edea2
commit
5c0382166f
|
@ -83,6 +83,8 @@ Release 2.2.1 - UNRELEASED
|
|||
YARN-879. Fixed tests w.r.t o.a.h.y.server.resourcemanager.Application.
|
||||
(Junping Du via devaraj)
|
||||
|
||||
YARN-1265. Fair Scheduler chokes on unhealthy node reconnect (Sandy Ryza)
|
||||
|
||||
Release 2.2.0 - 2013-10-13
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -788,6 +788,10 @@ public class FairScheduler implements ResourceScheduler {
|
|||
|
||||
private synchronized void removeNode(RMNode rmNode) {
|
||||
FSSchedulerNode node = nodes.get(rmNode.getNodeID());
|
||||
// This can occur when an UNHEALTHY node reconnects
|
||||
if (node == null) {
|
||||
return;
|
||||
}
|
||||
Resources.subtractFrom(clusterCapacity, rmNode.getTotalCapability());
|
||||
updateRootQueueMetrics();
|
||||
|
||||
|
|
Loading…
Reference in New Issue