YARN-8649. NPE in localizer hearbeat processing if a container is killed while localizing. Contributed by lujie

This commit is contained in:
Jason Lowe 2018-08-23 09:29:46 -05:00
parent bed8cb6979
commit 585ebd873a
3 changed files with 24 additions and 5 deletions

View File

@ -500,6 +500,11 @@ public Path getPathForLocalization(LocalResourceRequest req,
Path localPath = new Path(rPath, req.getPath().getName()); Path localPath = new Path(rPath, req.getPath().getName());
LocalizedResource rsrc = localrsrc.get(req); LocalizedResource rsrc = localrsrc.get(req);
if (rsrc == null) {
LOG.warn("Resource " + req + " has been removed"
+ " and will no longer be localized");
return null;
}
rsrc.setLocalPath(localPath); rsrc.setLocalPath(localPath);
LocalResource lr = LocalResource.newInstance(req.getResource(), LocalResource lr = LocalResource.newInstance(req.getResource(),
req.getType(), req.getVisibility(), req.getSize(), req.getType(), req.getVisibility(), req.getSize(),

View File

@ -885,6 +885,9 @@ public void addResource(LocalizerResourceRequestEvent request) {
Path publicDirDestPath = Path publicDirDestPath =
publicRsrc.getPathForLocalization(key, publicRootPath, publicRsrc.getPathForLocalization(key, publicRootPath,
delService); delService);
if (publicDirDestPath == null) {
return;
}
if (!publicDirDestPath.getParent().equals(publicRootPath)) { if (!publicDirDestPath.getParent().equals(publicRootPath)) {
createParentDirs(publicDirDestPath, publicRootPath); createParentDirs(publicDirDestPath, publicRootPath);
if (diskValidator != null) { if (diskValidator != null) {
@ -1175,10 +1178,11 @@ LocalizerHeartbeatResponse processHeartbeat(
LocalResourcesTracker tracker = getLocalResourcesTracker( LocalResourcesTracker tracker = getLocalResourcesTracker(
next.getVisibility(), user, applicationId); next.getVisibility(), user, applicationId);
if (tracker != null) { if (tracker != null) {
ResourceLocalizationSpec resource = Path localPath = getPathForLocalization(next, tracker);
NodeManagerBuilderUtils.newResourceLocalizationSpec(next, if (localPath != null) {
getPathForLocalization(next, tracker)); rsrcs.add(NodeManagerBuilderUtils.newResourceLocalizationSpec(
rsrcs.add(resource); next, localPath));
}
} }
} catch (IOException e) { } catch (IOException e) {
LOG.error("local path for PRIVATE localization could not be " + LOG.error("local path for PRIVATE localization could not be " +

View File

@ -1717,8 +1717,18 @@ dispatcher, exec, mock(DeletionService.class), dirsHandler, nmContext,
assertEquals("NM should tell localizer to be LIVE in Heartbeat.", assertEquals("NM should tell localizer to be LIVE in Heartbeat.",
LocalizerAction.LIVE, response.getLocalizerAction()); LocalizerAction.LIVE, response.getLocalizerAction());
// Cleanup application. // Cleanup container.
spyService.handle(new ContainerLocalizationCleanupEvent(c, rsrcs)); spyService.handle(new ContainerLocalizationCleanupEvent(c, rsrcs));
dispatcher.await();
try {
/*Directly send heartbeat to introduce race as container
is being cleaned up.*/
locRunnerForContainer.processHeartbeat(
Collections.singletonList(rsrcSuccess));
} catch (Exception e) {
fail("Exception should not have been thrown on processing heartbeat");
}
// Cleanup application.
spyService.handle(new ApplicationLocalizationEvent( spyService.handle(new ApplicationLocalizationEvent(
LocalizationEventType.DESTROY_APPLICATION_RESOURCES, app)); LocalizationEventType.DESTROY_APPLICATION_RESOURCES, app));
dispatcher.await(); dispatcher.await();