Storm UI Internal Server Error for remote cluster

2015-05-03 Thread Chun Yuen Lim
I'm following http://jayatiatblogs.blogspot.com/2011/11/storm-installation.html . I try to configuring Apache Storm remote cluster in Amazon Web Services and I face the error below in my Storm UI: org.apache.thrift7.transport.TTransportException: java.net.ConnectException: Connection refused

Re: Storm UI Internal Server Error for remote cluster

2015-05-03 Thread Harsha
hi, you nimbus.host is listening on localhost nimbus.host: 127.0.0.1 . Storm UI makes calls to nimbus to get storm cluster and topology info. Make sure your nimbus and nimbus thrift port is reachable from storm ui host. -Harsha On Sun, May 3, 2015, at 03:19 PM, Chun Yuen Lim wrote: I'm

Re: Storm halts Shutting down master

2015-05-03 Thread 임정택
I don't find any suspicious things from logs. Maybe nimbus was being shutdown gracefully (I mean normally), so you would like to check it. Jungtaek Lim (HeartSaVioR) 2015-05-03 20:26 GMT+09:00 Joan Perez Esteban corleon...@gmail.com: Hi Jungtaek, Storm version is 0.9.2-incubating, I am

Re: Storm halts Shutting down master

2015-05-03 Thread Joan Perez Esteban
Hi Jungtaek, Storm version is 0.9.2-incubating, I am running it locally in a virtual machine is just test environment. About the logs from Nimbus where are they stored? This is all I have in the console from other test: 36863 [main] INFO backtype.storm.daemon.nimbus - Shutting down master

Tick tuple using spout

2015-05-03 Thread Sudha Subramanian
Hi, I want to configure my spout to emit tick tuples on 2 different frequencies on different streams. My questions are as follows: 1. I understand how this is done using a bolt. But, on a spout, will the tick tuple invoke the nextTuple method on every tick? 2. How can I

Re: Storm halts Shutting down master

2015-05-03 Thread Joan Perez Esteban
Thanks ageing Jungtaek, Do you happen to know in where should I look at?, or if there are any parameters I can tune to improve efficiency? maybe is shutting down the process to save resources. rgds, Juan On 3 May 2015, at 15:29, 임정택 kabh...@gmail.com wrote: I don't find any suspicious

Re: Storm halts Shutting down master

2015-05-03 Thread Joan Perez Esteban
Thanks Srikanth, you were right, was using pieces of sample codes and the shutdown was at the end of the topology. On 3 May 2015, at 17:44, Srikanth srikanth...@gmail.com wrote: Is this your own code or did you copy it from somewhere? Most sample code you find online will run in local

Re: Storm halts Shutting down master

2015-05-03 Thread Srikanth
Is this your own code or did you copy it from somewhere? Most sample code you find online will run in local cluster only for short duration. See if your code does something like this cluster.submitTopology(); Thread.sleep(1000); cluster.shutdown(); --- This will bring your process down Srikanth