Github user jerrypeng commented on a diff in the pull request:
https://github.com/apache/storm/pull/921#discussion_r46719386
--- Diff: storm-core/src/jvm/backtype/storm/Config.java ---
@@ -2070,4 +2109,21 @@ public void setTopologyWorkerMaxHeapSize(Number
size) {
this.put(Config.TOPOLOGY_WORKER_MAX_HEAP_SIZE_MB, size);
}
}
+
+ /**
+ * set the priority for a topology
+ * @param priority
+ */
+ public void setTopologyPriority(int priority) {
+ this.put(Config.TOPOLOGY_PRIORITY, priority);
+ }
+
+ /**
+ * Takes as input the strategy class name. Strategy must implement the
IStrategy interface
+ */
--- End diff --
will do
---
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.
---