You are viewing a plain text version of this content. The canonical link for it is here.
Posted to yarn-dev@hadoop.apache.org by "Jian He (JIRA)" <ji...@apache.org> on 2014/07/24 21:54:40 UTC

[jira] [Created] (YARN-2354) DistributedShell may allocate more containers than client specified after it restarts

Jian He created YARN-2354:
-----------------------------

             Summary: DistributedShell may allocate more containers than client specified after it restarts
                 Key: YARN-2354
                 URL: https://issues.apache.org/jira/browse/YARN-2354
             Project: Hadoop YARN
          Issue Type: Sub-task
            Reporter: Jian He


To reproduce, run distributed shell with -num_containers option,
In ApplicationMaster.java, the following code has some issue.
{code}
  int numTotalContainersToRequest =
        numTotalContainers - previousAMRunningContainers.size();
    for (int i = 0; i < numTotalContainersToRequest; ++i) {
      ContainerRequest containerAsk = setupContainerAskForRM();
      amRMClient.addContainerRequest(containerAsk);
    }
    numRequestedContainers.set(numTotalContainersToRequest);
{code}
 numRequestedContainers doesn't account for previous AM's requested containers. so numRequestedContainers should be set to numTotalContainers



--
This message was sent by Atlassian JIRA
(v6.2#6252)