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

    https://github.com/apache/storm/pull/923#discussion_r46701044
  
    --- Diff: storm-core/src/jvm/backtype/storm/scheduler/multitenant/Node.java 
---
    @@ -334,7 +334,7 @@ public static int countTotalSlotsAlive(Collection<Node> 
nodes) {
       public static final Comparator<Node> FREE_NODE_COMPARATOR_DEC = new 
Comparator<Node>() {
         @Override
         public int compare(Node o1, Node o2) {
    -      return o2.totalSlotsFree() - o1.totalSlotsFree();
    +      return o1.totalSlotsUsed() - o2.totalSlotsUsed();
    --- End diff --
    
    Yes, this was the fix for spreading components on isolated nodes when 
certain workers are having trouble coming up.


---
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.
---

Reply via email to