Github user squito commented on a diff in the pull request:

    https://github.com/apache/spark/pull/4141#discussion_r23557845
  
    --- Diff: 
yarn/src/main/scala/org/apache/spark/deploy/yarn/YarnAllocator.scala ---
    @@ -192,15 +186,32 @@ private[yarn] class YarnAllocator(
       }
     
       /**
    -   * Request numExecutors additional containers from YARN. Visible for 
testing.
    +   * Update the set of container requests that we will sync with the RM 
based on the number of
    +   * executors we have currently running and our target number of 
executors.
    +   *
    +   * Visible for testing.
        */
    -  def addResourceRequests(numExecutors: Int): Unit = {
    -    for (i <- 0 until numExecutors) {
    -      val request = new ContainerRequest(resource, null, null, 
RM_REQUEST_PRIORITY)
    -      amClient.addContainerRequest(request)
    -      val nodes = request.getNodes
    -      val hostStr = if (nodes == null || nodes.isEmpty) "Any" else 
nodes.last
    -      logInfo("Container request (host: %s, capability: 
%s".format(hostStr, resource))
    +  def updateResourceRequests(): Unit = {
    --- End diff --
    
    how about making it `private[yarn]`? will still be visible in tests


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to