Re: Kafka Responsiveness

2013-06-26 Thread Hanish Bansal
Thanks for reply :) On Mon, Jun 24, 2013 at 5:45 PM, Florin Trofin wrote: > This might work OK for 0.7 but you might run into trouble with 0.8 when > replication is enabled. Make sure you test all the different scenarios for > failure. See the previous discussion thread "Kafka 0.8 Failover Beha

Re: Kafka Responsiveness

2013-06-24 Thread Florin Trofin
This might work OK for 0.7 but you might run into trouble with 0.8 when replication is enabled. Make sure you test all the different scenarios for failure. See the previous discussion thread "Kafka 0.8 Failover Behavior". Let us know how it works for you. Cheers! Florin On 6/24/13 4:21 AM, "Han

Re: Kafka Responsiveness

2013-06-24 Thread Jun Rao
The simplest check is to see if you can connect to the Kafka broker port. That just means the broker is up, but doesn't necessarily mean it is responsive. Another approach is to do a small write or read on an empty testing topic. Thanks, Jun On Mon, Jun 24, 2013 at 4:21 AM, Hanish Bansal < hani

Kafka Responsiveness

2013-06-24 Thread Hanish Bansal
Hi I am implementing autostart service for kafka which will check kafka's state If kafka is not running it will autostart kafka process. I also want to check whether Kafka is running or in unresponsive state. If kafka is in unresponsive state how to determine that? Is there any chances that kafk