Github user HeartSaVioR commented on a diff in the pull request:
https://github.com/apache/storm/pull/2343#discussion_r141209476
--- Diff: storm-server/src/main/java/org/apache/storm/DaemonConfig.java ---
@@ -103,6 +110,38 @@
public static final String STORM_SCHEDULER = "storm.scheduler";
/**
+ * The number of seconds that the blacklist scheduler will concern of
bad slots or supervisors
+ */
+ @isInteger
+ public static final String BLACKLIST_SCHEDULER_TOLERANCE_TIME =
"blacklist.scheduler.tolerance.time.secs";
+
+ /**
+ * The number of hit count that will trigger blacklist in tolerance
time
+ */
+ @isInteger
--- End diff --
Negative count doesn't make sense. I'll change it to `@isPositiveNumber`
---