Hi Obaid, you'll need one instance of Nimbus (storm coordinator) which could be running as Mesos framework, have a look here:
https://github.com/deric/storm-mesos Nimbus could be started via marathon, just use something like: /usr/local/bin/storm-mesos nimbus Then on Mesos slaves will be launched tasks requested by Nimbus, you don't have to start Supervisors on each slave. You could use either some binary package for distributing Storm jars or it could be copied before launching tasks via Mesos. If you are using Storm DRPC you would need to start DRPC daemon on each node. Also for accessing logs from Storm UI there is a log service that should be running on each node if you would like to use this feature. Regards, Tomas On 9 December 2014 at 03:44, Obaid Salikeen <[email protected]> wrote: > Hi, > > Currently, I couldn’t find any tutorial or steps regarding how to launch > storm-mesos (Storm topology) framework on Apache Marathon. It would be > great if you guys could give me any reference or hints over how to launch > Storm topology over Marathon. > > - Do I need to first install Storm on every single machine on my > Mesos cluster? > > - What is the recommended way to launch Storm topology over > Marathon? > > > > Thanks a lot, > > Obaid > > >

