You are viewing a plain text version of this content. The canonical link for it is here.
Posted to yarn-issues@hadoop.apache.org by "Szilard Nemeth (JIRA)" <ji...@apache.org> on 2019/03/26 23:11:00 UTC

[jira] [Assigned] (YARN-7239) Possible launch/cleanup race condition in ContainersLauncher

     [ https://issues.apache.org/jira/browse/YARN-7239?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Szilard Nemeth reassigned YARN-7239:
------------------------------------

    Assignee:     (was: Szilard Nemeth)

> Possible launch/cleanup race condition in ContainersLauncher
> ------------------------------------------------------------
>
>                 Key: YARN-7239
>                 URL: https://issues.apache.org/jira/browse/YARN-7239
>             Project: Hadoop YARN
>          Issue Type: Bug
>            Reporter: Miklos Szegedi
>            Priority: Major
>              Labels: newbie
>
> ContainersLauncher.handle() submits the launch job and then adds the job into the collection risking that the cleanup will miss it and return. This should be in reversed order in all 3 instances:
> {code}
>         containerLauncher.submit(launch);
>         running.put(containerId, launch);
> {code}
> The cleanup code that the above code is racing with:
> {code}
>         ContainerLaunch runningContainer = running.get(containerId);
>         if (runningContainer == null) {
>           // Container not launched. So nothing needs to be done.
>           LOG.info("Container " + containerId + " not running, nothing to signal.");
>           return;
>         }
> ...
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: yarn-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: yarn-issues-help@hadoop.apache.org