Thanks a lot Tomas, I was actually trying out Apache Marathon. I am trying to run storm-mesos framework over Marathon.
So far I managed to run Nimbus and UI by running following two commands through Marathon UI, however - UI dosent know where to find Nimbus. - Secondly I don’t know how to deploy my Storm topology jar on running instance of Nimbus on Apache Marathon: Run Numbus on Marathon: Command: ./storm-mesos-0.9/bin/storm-mesos nimbus URI: http://downloads.mesosphere.io/storm/storm-mesos-0.9.tgz Run storm UI on Marathon: Command: ./storm-mesos-0.9/bin/storm ui URI: http://downloads.mesosphere.io/storm/storm-mesos-0.9.tgz It would be great if you could let me know how to deploy Storm topology over Marathon. Thanks a lot, Obaid PS [cid:[email protected]] From: Tomas Barton [mailto:[email protected]] Sent: Tuesday, December 09, 2014 2:15 AM To: user Subject: Re: How to launch Storm topology on Apache Marathon 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]<mailto:[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

