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

    https://github.com/apache/spark/pull/6394#discussion_r31572195
  
    --- Diff: 
yarn/src/main/scala/org/apache/spark/deploy/yarn/YarnAllocator.scala ---
    @@ -427,11 +474,25 @@ private[yarn] class YarnAllocator(
             containerSet.remove(containerId)
             if (containerSet.isEmpty) {
               allocatedHostToContainersMap.remove(host)
    +          // If all the containers of this node are removed, remove this 
preferred location,
    +          // since it means currently we don't need to this node locality.
    +          preferredNodeLocationToUses.remove(host)
             } else {
               allocatedHostToContainersMap.update(host, containerSet)
             }
     
             allocatedContainerToHostMap.remove(containerId)
    +
    +        // If current there's no container allocated on this rack, remove 
it,
    +        // since we don't need this rack currently.
    +        val remainingRacks = allocatedHostToContainersMap.keys.map { h =>
    +          RackResolver.resolve(conf, h).getNetworkLocation
    +        }.toSet
    +        remainingRacks.foreach { rack =>
    +          if (!preferredRackLocations.contains(rack)) {
    +            preferredRackLocations.remove(rack)
    --- End diff --
    
    Hmm, this looks wrong? It's not doing anything currently, given the 
condition.


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to