hi, I use kafka 0.9.0.0 in CDH 5.6, and my application consume kafka
message by following code.

---------------------------------------------------------------------------------------------------------------------
      String topicName = "tpCz01";
      Properties props = new Properties();

      props.put("bootstrap.servers", "192.168.59.121:9092,
192.168.59.122:9092,192.168.59.123:9092");
      props.put("group.id", "grpCz");
      props.put("enable.auto.commit", "true");
      props.put("auto.commit.interval.ms", "1000");
      props.put("session.timeout.ms", "30000");
      props.put("key.deserializer",
         "org.apache.kafka.common.serialization.StringDeserializer");
      props.put("value.deserializer",
         "org.apache.kafka.common.serialization.StringDeserializer");

      KafkaConsumer<String, String> consumer = new KafkaConsumer
         <String, String>(props);

      //Kafka Consumer subscribes list of topics here.
      consumer.subscribe(Arrays.asList(topicName));
      //......
---------------------------------------------------------------------------------------------------------------------

when application run once, I can get consumer offset by
*kafka-run-class kafka.tools.ConsumerOffsetChecke, *but can not find the
offset in zookeeper path /consumer/xxxxx.

I wonder where kafka  stores consumer offset in version 0.9.0.0, Is there
anything wrong I did.
any help would be appreciated. thank you~

Reply via email to