RuiLi8080 commented on a change in pull request #3213: [STORM-3588] add
GenericResourceAwareSchedulingPriorityStrategy to accommodate generic resource
in grading topologies
URL: https://github.com/apache/storm/pull/3213#discussion_r395229049
##########
File path:
storm-server/src/main/java/org/apache/storm/scheduler/resource/ResourceAwareScheduler.java
##########
@@ -56,6 +59,10 @@
private int schedulingTimeoutSeconds;
private ExecutorService backgroundScheduling;
+ // record evicted topologies on each scheduling round, only used in test
purpose now
+ private boolean forTest = false;
+ private Set<String> evictedTopologies = new HashSet<>();
+
Review comment:
Unfortunately no, I have to add this to check whether topo was evicted since
in some scenarios, evicted topo would be put back in the same round of
scheduling.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services