Re: Keeping Zookeeper and Kafka Server Up

2015-06-17 Thread Joe Stein
+1 to using exhibitor. Besides managing the ensemble it also helps with backups and zk log cleanup (which if you don't do your machine will run out of space). ~ Joestein On Jun 17, 2015 9:44 AM, "Dillian Murphey" wrote: > supervisord is pretty easy to use. Netflix Exhibitor will manage this all

Re: Keeping Zookeeper and Kafka Server Up

2015-06-17 Thread Dillian Murphey
supervisord is pretty easy to use. Netflix Exhibitor will manage this all for zookeeper, if you want to try that tool. On Wed, Jun 17, 2015 at 7:03 AM, Kashyap Mhaisekar wrote: > We use supervisord for this. It ensures that the processes are always up > and running. > > Thanks > Kashyap > > On

Re: Keeping Zookeeper and Kafka Server Up

2015-06-17 Thread Kashyap Mhaisekar
We use supervisord for this. It ensures that the processes are always up and running. Thanks Kashyap On Wednesday, June 17, 2015, Shayne S wrote: > kafka-server-start.sh has a -daemon option, but I don't think Zookeeper has > it. > > On Tue, Jun 16, 2015 at 11:32 PM, Su She > wrote: > > > It s

Re: Keeping Zookeeper and Kafka Server Up

2015-06-17 Thread Shayne S
kafka-server-start.sh has a -daemon option, but I don't think Zookeeper has it. On Tue, Jun 16, 2015 at 11:32 PM, Su She wrote: > It seems like nohup has solved this issue, even when the putty window > becomes inactive the processes are still running (I din't need to > interact with them). I mig

Re: Keeping Zookeeper and Kafka Server Up

2015-06-16 Thread Su She
It seems like nohup has solved this issue, even when the putty window becomes inactive the processes are still running (I din't need to interact with them). I might look into using screen or tmux as a long term solution. Thanks Terry and Mike! Best, Su On Tue, Jun 16, 2015 at 3:42 PM, Terry Ba

Re: Keeping Zookeeper and Kafka Server Up

2015-06-16 Thread Terry Bates
Greetings, nohup does the trick, as Mr. Bridge has shared. If you seem to want to run these and still have some "interactivity" with the services, consider using "screen" or "tmux" as these will enable you to run these programs in foreground, have added windows you can use to access shell, tail lo

Re: Keeping Zookeeper and Kafka Server Up

2015-06-16 Thread Mike Bridge
Have you tried using "nohup" nohup bin/zookeeper-server-start.sh config/zookeeper.properties & nohup bin/kafka-server-start.sh config/server.properties & On Tue, Jun 16, 2015 at 3:21 PM, Su She wrote: > Hello Everyone, > > I'm wondering how to keep Zookeeper and Kafka Server up even wh

Keeping Zookeeper and Kafka Server Up

2015-06-16 Thread Su She
Hello Everyone, I'm wondering how to keep Zookeeper and Kafka Server up even when my SSH (using putty) becomes inactive. I've tried running it in the background (using &), but it seems like it stops sometimes after a couple hours or so and I'll have to restart zookeeper and/or the kafka server. T