[ https://issues.apache.org/jira/browse/KAFKA-2088?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14500330#comment-14500330 ]
Jun Rao commented on KAFKA-2088: -------------------------------- [~ransom], thanks for the patch. It may be reasonable to start a console consumer before the data is produced or even the Kafka cluster is started. It just won't get any data until the cluster is up and the data is produced. It's reasonable for the console consumer to create /consumer path. However, it probably shouldn't create /brokers, do you know what triggered this inside console consumer? > kafka-console-consumer.sh should not create zookeeper path when no brokers > found and chroot was set in zookeeper.connect > ------------------------------------------------------------------------------------------------------------------------ > > Key: KAFKA-2088 > URL: https://issues.apache.org/jira/browse/KAFKA-2088 > Project: Kafka > Issue Type: Bug > Components: clients > Affects Versions: 0.8.2.1 > Reporter: Zhiqiang He > Assignee: Zhiqiang He > Priority: Minor > Attachments: kafka-2088.1.patch > > > 1. set server.properties > server.properties: > zookeeper.connect = > 192.168.0.10:2181,192.168.0.10:2181,192.168.0.10:2181/kafka > 2 default zookeeepr path: > [zk: 192.168.0.10:2181(CONNECTED) 10] ls / > [zookeeper, kafka, storm] > 3.start console consumer use a not exist topic and zookeeper address without > chroot. > [root@stream client_0402]# kafka-console-consumer.sh --zookeeper > 192.168.0.10:2181 --topic test --from-beginning > [2015-04-03 18:15:28,599] WARN > [console-consumer-63060_stream-1428056127990-d35ca648], no brokers found when > trying to rebalance. (kafka.consumer.ZookeeperConsumerConnector) > 4.then "/consumer" and "/brokers" path was create in zookeeper. > [zk: 192.168.0.10:2181(CONNECTED) 2] ls / > [zookeeper, consumers, kafka, storm, brokers] > so it is a bug. consumer should not create "/consumer" and "/brokers" path . -- This message was sent by Atlassian JIRA (v6.3.4#6332)