Re: Kafka console producer stuck

2015-10-28 Thread Sathyakumar Seshachalam
Thanks. Worked like a charm. On 10/28/15, 9:59 PM, "Grant Henke" wrote: >The docs don't necessarily make it clear, but if you don't pipe data into >the console-producer, it waits for your typed input (stdin). This is shown >in the docs with the lines just below "*bin/kafka-console-producer.sh >

Re: Kafka console producer stuck

2015-10-28 Thread Grant Henke
The docs don't necessarily make it clear, but if you don't pipe data into the console-producer, it waits for your typed input (stdin). This is shown in the docs with the lines just below "*bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test*" that show: This is a message > This

Re: Kafka console producer stuck

2015-10-28 Thread Sathyakumar Seshachalam
Hi Grant, But then my console producer is not sending any message to the broker. It just prints that warning and keeps waiting. I have verified that console producer is "not" sending messages by actually running console consumer. And a Java client that sends messages works and the console con

Re: Kafka console producer stuck

2015-10-28 Thread Grant Henke
Hi Sathya, This was a bug that is now fixed in trunk and will be included in the next release. See KAFKA-1711 for more details. You can safely ignore the warning and it should not impact the usage of the console producer. Thank you, Grant On We

Re: Kafka console producer stuck

2015-10-28 Thread Sathyakumar Seshachalam
Hi, Its the same as in the Quick Start tutorial bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test On 10/28/15, 4:06 PM, "Prabhjot Bharaj" wrote: >Hi, > >It seems (from VerifiableProperties.scala - >https://github.com/apache/kafka/blob/trunk/core/src/main/scala/kafka/utils

Re: Kafka console producer stuck

2015-10-28 Thread Prabhjot Bharaj
Hi, It seems (from VerifiableProperties.scala - https://github.com/apache/kafka/blob/trunk/core/src/main/scala/kafka/utils/VerifiableProperties.scala#L224) that you are providing some property which kafka does not recognise Please share the full command that you are trying to use Regards, Prabhjo

Kafka console producer stuck

2015-10-28 Thread Sathyakumar Seshachalam
Am trying to get started on Kafka and following instructions on http://kafka.apache.org/documentation.html#quickstart. Am setting up on a single broker. I got as far as creating topics and listing them, but when I try kafka-console-producer.sh to add messages, I ended up in below error. [2015-