Github user redsanket commented on a diff in the pull request: https://github.com/apache/storm/pull/845#discussion_r45307023 --- Diff: storm-core/src/jvm/backtype/storm/Config.java --- @@ -980,6 +980,126 @@ public static final String SUPERVISOR_SLOTS_PORTS = "supervisor.slots.ports"; /** + * What blobstore implementation the supervisor should use. + */ + @isString + public static final String SUPERVISOR_BLOBSTORE = "supervisor.blobstore.class"; + public static final Object SUPERVISOR_BLOBSTORE_SCHEMA = String.class; + + /** + * The jvm opts provided to workers launched by this supervisor. All "%ID%" substrings are replaced + * with an identifier for this worker. Also, "%WORKER-ID%", "%STORM-ID%" and "%WORKER-PORT%" are + * replaced with appropriate runtime values for this worker. + * The distributed cache target size in MB. This is a soft limit to the size of the distributed + * cache contents. + */ + @isPositiveNumber + @isInteger + public static final String SUPERVISOR_LOCALIZER_CACHE_TARGET_SIZE_MB = "supervisor.localizer.cache.target.size.mb"; --- End diff -- changed the comment
--- 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 infrastruct...@apache.org or file a JIRA ticket with INFRA. ---