Re: Difference between storing offset on Kafka and on Zookeeper server?

2015-10-15 Thread Marina
.apache.org" <users@kafka.apache.org> Sent: Thursday, October 15, 2015 2:27 AM Subject: Re: Difference between storing offset on Kafka and on Zookeeper server? There are a couple of advantages. First, scalability. Writes to Kafka are cheaper than writes to ZK. Kafka-based o

Re: Difference between storing offset on Kafka and on Zookeeper server?

2015-10-15 Thread Ewen Cheslack-Postava
There are a couple of advantages. First, scalability. Writes to Kafka are cheaper than writes to ZK. Kafka-based offset storage is going to be able to handle significantly more consumers (and scale out as needed since writes are spread across all partitions in the offsets topic). Second, once you

Difference between storing offset on Kafka and on Zookeeper server?

2015-10-14 Thread Kiran Singh
What are the major advantage to store Offset on kafka server instead of zookeeper? Please share any link for the same.