Re: kafka-consumer-group.sh failed on 0.10.0 but works on 0.9.0.1

2016-05-27 Thread Ismael Juma
Yes, that sounds good. Would you like to submit a PR to our upgrade page? https://github.com/apache/kafka/blob/trunk/docs/upgrade.html Thanks, Ismael On Wed, May 25, 2016 at 6:11 AM, allen chan wrote: > Thanks Jason for that insight. I will use the 0.9 tools until i upgrade all > the brokers.

Re: kafka-consumer-group.sh failed on 0.10.0 but works on 0.9.0.1

2016-05-24 Thread allen chan
Thanks Jason for that insight. I will use the 0.9 tools until i upgrade all the brokers. I suppose it should be documented somewhere so others dont run into the same issue and think something is wrong? On Tue, May 24, 2016 at 7:25 PM, Jason Gustafson wrote: > I went ahead and tried this locally

Re: kafka-consumer-group.sh failed on 0.10.0 but works on 0.9.0.1

2016-05-24 Thread Jason Gustafson
I went ahead and tried this locally and the new topic metadata request does appear to be the problem. Unfortunately, the tools are bound by the same compatibility model as the clients, which means there is no guarantee that they work with older versions. As a workaround, I guess you can use the con

Re: kafka-consumer-group.sh failed on 0.10.0 but works on 0.9.0.1

2016-05-24 Thread tao xiao
I am pretty sure consumer-group.sh uses tools-log4j.properties On Tue, 24 May 2016 at 17:59 allen chan wrote: > Maybe i am doing this wrong > > [ac...@ekk001.scl ~]$ cat > /opt/kafka/kafka_2.11-0.10.0.0/config/log4j.properties > .. > log4j.rootLogger=DEBUG, kafkaAppender > .. > > > See no extra

Re: kafka-consumer-group.sh failed on 0.10.0 but works on 0.9.0.1

2016-05-24 Thread allen chan
Maybe i am doing this wrong [ac...@ekk001.scl ~]$ cat /opt/kafka/kafka_2.11-0.10.0.0/config/log4j.properties .. log4j.rootLogger=DEBUG, kafkaAppender .. See no extra logs when running the consumer-group.sh tool. On Tue, May 24, 2016 at 5:46 PM, Jason Gustafson wrote: > Hey Allen, > > Can yo

Re: kafka-consumer-group.sh failed on 0.10.0 but works on 0.9.0.1

2016-05-24 Thread Jason Gustafson
Hey Allen, Can you turn on DEBUG logging and see if there's another exception? First thought that occurs to me is that it might be the topic metadata request which is actually failing. There was a version bump in 0.10 which would not be supported by the 0.9 brokers. Thanks, Jason On Tue, May 24,

kafka-consumer-group.sh failed on 0.10.0 but works on 0.9.0.1

2016-05-24 Thread allen chan
I upgraded one of my brokers to 0.10.0. I followed the upgrade guide and added these to my server.properties: inter.broker.protocol.version=0.9.0.1 log.message.format.version=0.9.0.1 When checking the lag i get this error. [ac...@ekk001.scl ~]$ sudo /opt/kafka/kafka_2.11-0.10.0.0/bin/kafka-con