Given a multiple node Storm cluster, is it possible to ensure that a topology submitted on a specific machine runs only on that machine? More specifically, given a cluster of machines A, B, and C, if a topology is submitted from machine A, is there a way to guarantee that:
-The topology runs on machine A. -If machine A crashes, the topology is not re-run on another machine. I am guessing there isn't and that the answer to this is to run a leader nimbus per machine (nimbus.seeds: ["localhost"]), but I wanted to see if there was a way to do this that I am missing.
