Return-Path: X-Original-To: apmail-kafka-dev-archive@www.apache.org Delivered-To: apmail-kafka-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D08881769F for ; Wed, 1 Oct 2014 22:42:34 +0000 (UTC) Received: (qmail 37607 invoked by uid 500); 1 Oct 2014 22:42:34 -0000 Delivered-To: apmail-kafka-dev-archive@kafka.apache.org Received: (qmail 37555 invoked by uid 500); 1 Oct 2014 22:42:34 -0000 Mailing-List: contact dev-help@kafka.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kafka.apache.org Delivered-To: mailing list dev@kafka.apache.org Received: (qmail 37542 invoked by uid 99); 1 Oct 2014 22:42:34 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Oct 2014 22:42:34 +0000 Date: Wed, 1 Oct 2014 22:42:34 +0000 (UTC) From: "Neha Narkhede (JIRA)" To: dev@kafka.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (KAFKA-1664) Kafka does not properly parse multiple ZK nodes with non-root chroot MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/KAFKA-1664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Neha Narkhede updated KAFKA-1664: --------------------------------- Labels: newbie (was: ) > Kafka does not properly parse multiple ZK nodes with non-root chroot > -------------------------------------------------------------------- > > Key: KAFKA-1664 > URL: https://issues.apache.org/jira/browse/KAFKA-1664 > Project: Kafka > Issue Type: Bug > Components: clients > Reporter: Ricky Saltzer > Assignee: Gwen Shapira > Priority: Blocker > Labels: newbie > > When using a non-root ZK directory for Kafka, if you specify multiple ZK servers, Kafka does not seem to properly parse the connection string. > *Error* > {code} > [root@hodor-001 bin]# ./kafka-console-consumer.sh --zookeeper baelish-001.edh.cloudera.com:2181/kafka,baelish-002.edh.cloudera.com:2181/kafka,baelish-003.edh.cloudera.com:2181/kafka --topic test-topic > [2014-10-01 15:31:04,629] ERROR Error processing message, stopping consumer: (kafka.consumer.ConsoleConsumer$) > java.lang.IllegalArgumentException: Path length must be > 0 > at org.apache.zookeeper.common.PathUtils.validatePath(PathUtils.java:48) > at org.apache.zookeeper.common.PathUtils.validatePath(PathUtils.java:35) > at org.apache.zookeeper.ZooKeeper.create(ZooKeeper.java:766) > at org.I0Itec.zkclient.ZkConnection.create(ZkConnection.java:87) > at org.I0Itec.zkclient.ZkClient$1.call(ZkClient.java:308) > at org.I0Itec.zkclient.ZkClient$1.call(ZkClient.java:304) > at org.I0Itec.zkclient.ZkClient.retryUntilConnected(ZkClient.java:675) > at org.I0Itec.zkclient.ZkClient.create(ZkClient.java:304) > at org.I0Itec.zkclient.ZkClient.createPersistent(ZkClient.java:213) > at org.I0Itec.zkclient.ZkClient.createPersistent(ZkClient.java:223) > at org.I0Itec.zkclient.ZkClient.createPersistent(ZkClient.java:223) > at org.I0Itec.zkclient.ZkClient.createPersistent(ZkClient.java:223) > at kafka.utils.ZkUtils$.createParentPath(ZkUtils.scala:245) > at kafka.utils.ZkUtils$.createEphemeralPath(ZkUtils.scala:256) > at kafka.utils.ZkUtils$.createEphemeralPathExpectConflict(ZkUtils.scala:268) > at kafka.utils.ZkUtils$.createEphemeralPathExpectConflictHandleZKBug(ZkUtils.scala:306) > at kafka.consumer.ZookeeperConsumerConnector.kafka$consumer$ZookeeperConsumerConnector$$registerConsumerInZK(ZookeeperConsumerConnector.scala:226) > at kafka.consumer.ZookeeperConsumerConnector$WildcardStreamsHandler.(ZookeeperConsumerConnector.scala:755) > at kafka.consumer.ZookeeperConsumerConnector.createMessageStreamsByFilter(ZookeeperConsumerConnector.scala:145) > at kafka.consumer.ConsoleConsumer$.main(ConsoleConsumer.scala:196) > at kafka.consumer.ConsoleConsumer.main(ConsoleConsumer.scala) > {code} > *Working* > {code} > [root@hodor-001 bin]# ./kafka-console-consumer.sh --zookeeper baelish-001.edh.cloudera.com:2181/kafka --topic test-topic > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)