YARN-4520. Finished app info is unnecessarily persisted in NM state-store if container is acquired but not lunched on this node. Contributed by sandflee
This commit is contained in:
parent
d62b4a4de7
commit
992dd2f783
@ -1327,6 +1327,9 @@ Release 2.8.0 - UNRELEASED
|
||||
|
||||
YARN-4592. Remove unused GetContainerStatus proto. (Chang Li via aajisaka)
|
||||
|
||||
YARN-4520. Finished app info is unnecessarily persisted in NM state-store
|
||||
if container is acquired but not lunched on this node. (sandflee via jianeh)
|
||||
|
||||
Release 2.7.3 - UNRELEASED
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -1310,6 +1310,12 @@ public void handle(ContainerManagerEvent event) {
|
||||
CMgrCompletedAppsEvent appsFinishedEvent =
|
||||
(CMgrCompletedAppsEvent) event;
|
||||
for (ApplicationId appID : appsFinishedEvent.getAppsToCleanup()) {
|
||||
Application app = this.context.getApplications().get(appID);
|
||||
if (app == null) {
|
||||
LOG.warn("couldn't find application " + appID + " while processing"
|
||||
+ " FINISH_APPS event");
|
||||
continue;
|
||||
}
|
||||
String diagnostic = "";
|
||||
if (appsFinishedEvent.getReason() == CMgrCompletedAppsEvent.Reason.ON_SHUTDOWN) {
|
||||
diagnostic = "Application killed on shutdown";
|
||||
|
Loading…
Reference in New Issue
Block a user