Kuhu Shukla created YARN-9206:
---------------------------------
Summary: RMServerUtils does not count SHUTDOWN as an accepted state
Key: YARN-9206
URL: https://issues.apache.org/jira/browse/YARN-9206
Project: Hadoop YARN
Issue Type: Bug
Affects Versions: 3.0.3
Reporter: Kuhu Shukla
Assignee: Kuhu Shukla
{code}
if (acceptedStates.contains(NodeState.DECOMMISSIONED) ||
acceptedStates.contains(NodeState.LOST) ||
acceptedStates.contains(NodeState.REBOOTED)) {
for (RMNode rmNode : context.getInactiveRMNodes().values()) {
if ((rmNode != null) && acceptedStates.contains(rmNode.getState())) {
results.add(rmNode);
}
}
}
return results;
}
{code}
This should include SHUTDOWN state as they are inactive too. This method is
used for node reports and such so might be useful to account for them as well.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]