Re: Issues in Storm deployment

2016-04-08 Thread vibha goyal
Hi, I am grad student, and I am working on Storm as a part of my course project. I have added some code in bolt-emit function, which has increased the latency. Is this expected? (fast-list-iter [^TupleImpl a anchors] (let [

Re: Issues in Storm deployment

2016-03-14 Thread Harsha
Do not package storm-core in your topology. Make sure the scope is set to provided. On Mon, Mar 14, 2016, at 07:36 AM, vibha goyal wrote: > > Thank you all!! > > How do I exclude this from topology? I have not made any change in > any file. > > > Just using the default files, and creating the j

Re: Issues in Storm deployment

2016-03-14 Thread vibha goyal
Thank you all!! How do I exclude this from topology? I have not made any change in any file. Just using the default files, and creating the jar files using "mvn clean install' in storm-starter. Regards, Vibha Goyal On Mon, Mar 14, 2016 at 2:58 AM, 马哲超 wrote: > *stom.yaml* is uesed when start

Re: Issues in Storm deployment

2016-03-14 Thread 马哲超
*stom.yaml* is uesed when starting the storm cluster, not your topology. Do not package this file into your topology. 2016-03-14 15:15 GMT+08:00 vibha goyal : > Thanks, but as I mentioned in the original e-mail, I cannot keep > storm.yaml in /home/vgoyal5/apache-storm-1.0.0-SNAPSHOT/conf/storm.ya

Re: Issues in Storm deployment

2016-03-14 Thread vibha goyal
Thanks, but as I mentioned in the original e-mail, I cannot keep storm.yaml in /home/vgoyal5/apache-storm-1.0.0-SNAPSHOT/conf/storm.yaml" . If i keep this, it give me error. How to make changes to yaml file? On Mon, Mar 14, 2016 at 1:30 AM, Harsha wrote: > its for Nimbus HA > http://hortonwork

Re: Issues in Storm deployment

2016-03-13 Thread Harsha
its for Nimbus HA  http://hortonworks.com/blog/fault-tolerant-nimbus-in-apache-storm/ On Sun, Mar 13, 2016, at 11:27 PM, Sai Dilip Reddy Kiralam wrote: > > Hi Harsha, > can you explain why nimbus seeds are used - [nimbus.seeds: ["host1", "host2", > "host3"];] > > ** ** > > > > On Mon, Mar 14,

Re: Issues in Storm deployment

2016-03-13 Thread Sai Dilip Reddy Kiralam
Hi Harsha, can you explain why nimbus seeds are used - [nimbus.seeds: ["host1", "host2", "host3"];] On Mon, Mar 14, 2016 at 9:49 AM, Harsha wrote: > Vibha, > For multi-node cluster the main config we need are > nimbus.seeds: ["nimbus_host_name"] > storm.zookeeper.servers: > -

Re: Issues in Storm deployment

2016-03-13 Thread Harsha
Vibha, For multi-node cluster the main config we need are nimbus.seeds: ["nimbus_host_name"] storm.zookeeper.servers: - "zookeeper_host_name" - "zookeeper_host_name" You can look at the example here https://github.com/apache/storm/blob/master/conf/storm.yaml.example make sure you copy the same

Re: Issues in Storm deployment

2016-03-13 Thread Xiang Wang
Hi, I guess you are in the wrong directory. Do "mvn package" under "$STORM_HOME/examples/storm-starter/". Then you can find a jar like "storm-starter-0.10.0.jar" in the target directory, which should be uploaded to storm cluster. --- Xiang Wang PhD Candidate Database