Re: Unable to create a topic from console producer even though topic creation is enabled

2015-11-18 Thread Kishore N C
It turns out that "auto.create.topics.enable=true" was actually getting overridden to false somewhere else, and ended up causing this issue. On Tue, Nov 3, 2015 at 8:19 PM, Artem Ervits wrote: > change the order of your commands > > *bin/kafka-console-producer.sh --broker-list localhost:9092 -

Re: Unable to create a topic from console producer even though topic creation is enabled

2015-11-03 Thread Artem Ervits
change the order of your commands *bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test* On Tue, Nov 3, 2015 at 7:23 AM, Kishore N C wrote: > Hi all, > > I have a 3-node Kafka cluster. I'm running into the following error when I > try to use the console producer to write to

Unable to create a topic from console producer even though topic creation is enabled

2015-11-03 Thread Kishore N C
Hi all, I have a 3-node Kafka cluster. I'm running into the following error when I try to use the console producer to write to a topic that does *not* yet exist. I have ensured that "auto.create.topics.enable=true" in server.properties. The error: ubuntu@ip-XX-X-XXX-XX:/usr/local/kafka$ bin/kafk