kafka-clients missing in maven central

2014-07-01 Thread Piotr Jagielski
Hi all, Anyone knows the reason kafka-client is missing in repo.maven.org?

kafka users subscription

2014-07-01 Thread Prashant Prakash

kafka users subscription

2014-07-01 Thread Prashant Prakash

Re: kafka-clients missing in maven central

2014-07-01 Thread Steve Robenalt
You didn't state which Kafka version you are using, but there is a known problem with at least one version. https://issues.apache.org/jira/browse/KAFKA-1174 has the details. The workaround (if you can use it) is to change the client to use a different scala-libs version. The client and server

Re: kafka-clients missing in maven central

2014-07-01 Thread Jun Rao
kafka-client hasn't been officially released yet and will be included in the next release. Thanks, Jun On Tue, Jul 1, 2014 at 2:59 AM, Piotr Jagielski pjagiel...@o2.pl wrote: Hi all, Anyone knows the reason kafka-client is missing in repo.maven.org?

Re: running on scala 2.11

2014-07-01 Thread Joe Stein
Looping back around here (for posterity) I didn't update the ticket but Scala 2.11 works with 2.10 binaries http://www.scala-lang.org/news/2.11.0 If there are issue folks can open a new JIRA please with specific issue as it may not be related, thanks! /***

RE: Failed to send messages after 3 tries

2014-07-01 Thread England, Michael
We're using kafka 0.8.1.1 -Original Message- From: Jun Rao [mailto:jun...@gmail.com] Sent: Monday, June 30, 2014 10:23 AM To: users@kafka.apache.org Subject: Re: Failed to send messages after 3 tries Which version of Kafka are you using? Thanks, Jun On Fri, Jun 27, 2014 at 11:57 AM,

kafka simpleconsumer question

2014-07-01 Thread Weide Zhang
Hi , Just want to ask some basic question about kafka simple consumer. 1. if I'm using simple consumer and doesn't really depend on zookeeper to manage partition offset. (application manage offset themselves). Will that remove the zookeeper dependency for consumer ? 2. if zookeeper dies, will

Re: kafka simpleconsumer question

2014-07-01 Thread Guozhang Wang
Hi Weide, 1. The old consumer is still depending on the ZK no matter if you use ZK for offsets or not, since it depends on ZK for group manage anyways. In the new consumer (0.9) we have completely the ZK dependance. 2. Yes, it queries the broker for leader info. 3. You can use a single consumer