This is an automated email from the ASF dual-hosted git repository.
rzo1 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/storm.git
The following commit(s) were added to refs/heads/master by this push:
new 0558e5185 Remove shuffle after sorting in isolation scheduler host
Assignable Slots (#8705)
0558e5185 is described below
commit 0558e5185a792b710e3f5abf2aa55fc71279dc72
Author: Meet Jain <[email protected]>
AuthorDate: Sun May 24 17:29:16 2026 +0530
Remove shuffle after sorting in isolation scheduler host Assignable Slots
(#8705)
---
.../src/main/java/org/apache/storm/scheduler/IsolationScheduler.java | 1 -
1 file changed, 1 deletion(-)
diff --git
a/storm-server/src/main/java/org/apache/storm/scheduler/IsolationScheduler.java
b/storm-server/src/main/java/org/apache/storm/scheduler/IsolationScheduler.java
index 3a4fa0de3..2ebd4bd89 100644
---
a/storm-server/src/main/java/org/apache/storm/scheduler/IsolationScheduler.java
+++
b/storm-server/src/main/java/org/apache/storm/scheduler/IsolationScheduler.java
@@ -326,7 +326,6 @@ public class IsolationScheduler implements IScheduler {
return o2.getWorkerSlots().size() - o1.getWorkerSlots().size();
}
});
- Collections.shuffle(sortHostAssignSlots);
return new LinkedList<HostAssignableSlots>(sortHostAssignSlots);
}