Hello: I have a situation where I would like to ensure that a worker runs ONLY tasks of a particular type (so, if I have a special-spout component, I want to ensure that this component does NOT share a worker with any other non special-spout component).
This blog post: http://xumingming.sinaapp.com/885/twitter-storm-how-to-develop-a-pluggable-scheduler/ shows how you can tell storm to locate a component on a set of supervisors, but it does not indicate if it is possible to forbid other components from running on that same supervisor (or worker) Is it possible to do this without writing my own scheduler for all components? (I know I can write my own version of the EvenScheduler that ignores certain nodes, but I am hoping to avoid this...) Thanks! Milad
