YARN-9565. RMAppImpl#ranNodes not cleared on FinalTransition. Contributed by Bilwa S T.
This commit is contained in:
parent
f918e3fe62
commit
60c95e9b6a
@ -1522,6 +1522,7 @@ private void completeAndCleanupApp(RMAppImpl app) {
|
||||
app.handler.handle(
|
||||
new RMNodeCleanAppEvent(nodeId, app.applicationId));
|
||||
}
|
||||
app.ranNodes.clear();
|
||||
// Recovered apps that are completed were not added to scheduler, so no
|
||||
// need to remove them from scheduler.
|
||||
if (app.recoveredFinalState == null) {
|
||||
|
@ -45,6 +45,7 @@
|
||||
import org.apache.hadoop.yarn.api.records.LocalResourceType;
|
||||
import org.apache.hadoop.yarn.api.records.LocalResourceVisibility;
|
||||
import org.apache.hadoop.yarn.api.records.LogAggregationContext;
|
||||
import org.apache.hadoop.yarn.api.records.NodeId;
|
||||
import org.apache.hadoop.yarn.api.records.Priority;
|
||||
import org.apache.hadoop.yarn.api.records.ResourceRequest;
|
||||
import org.apache.hadoop.yarn.api.records.URL;
|
||||
@ -569,6 +570,7 @@ protected RMApp testCreateAppSubmittedRecovery(
|
||||
protected RMApp testCreateAppAccepted(
|
||||
ApplicationSubmissionContext submissionContext) throws IOException {
|
||||
RMApp application = testCreateAppSubmittedNoRecovery(submissionContext);
|
||||
NodeId nodeId = NodeId.newInstance("host", 1234);
|
||||
// SUBMITTED => ACCEPTED event RMAppEventType.APP_ACCEPTED
|
||||
RMAppEvent event =
|
||||
new RMAppEvent(application.getApplicationId(),
|
||||
@ -576,6 +578,8 @@ protected RMApp testCreateAppAccepted(
|
||||
application.handle(event);
|
||||
assertStartTimeSet(application);
|
||||
assertAppState(RMAppState.ACCEPTED, application);
|
||||
application.handle(
|
||||
new RMAppRunningOnNodeEvent(application.getApplicationId(), nodeId));
|
||||
return application;
|
||||
}
|
||||
|
||||
@ -1089,6 +1093,7 @@ public void testAppFinishedFinished() throws Exception {
|
||||
rmDispatcher.await();
|
||||
assertTimesAtFinish(application);
|
||||
assertAppState(RMAppState.FINISHED, application);
|
||||
Assert.assertEquals(0, application.getRanNodes().size());
|
||||
StringBuilder diag = application.getDiagnostics();
|
||||
Assert.assertEquals("application diagnostics is not correct",
|
||||
"", diag.toString());
|
||||
|
Loading…
Reference in New Issue
Block a user