Re: Kafka 08 clients

2013-08-12 Thread Andrew Otto
This is the Kafka C client for 0.8 we are using at Wikimedia: https://github.com/edenhill/librdkafka If you're using Debian/Ubuntu: you use the debian branch here to build a .deb: https://github.com/paravoid/librdkafka/tree/debian On Aug 12, 2013, at 12:06 AM, Jun Rao wrote: > At Linked

Re: Kafka 08 clients

2013-08-11 Thread Jun Rao
At LinkedIn, we built a C producer client for 0.8, we plan to open source it in the next few weeks. Thanks, Jun On Sat, Aug 10, 2013 at 6:29 PM, Mark wrote: > Is there an *official* client out there? > > On Aug 10, 2013, at 4:10 PM, Scott Clasen wrote: > > > bpot/poseidon on github is a ruby

Re: Kafka 08 clients

2013-08-10 Thread Mark
Is there an *official* client out there? On Aug 10, 2013, at 4:10 PM, Scott Clasen wrote: > bpot/poseidon on github is a ruby 0.8 client, works fine for me > > Sent from my iPhone > > On Aug 10, 2013, at 3:08 PM, Timothy Chen wrote: > >> That's definitely means it's not up to date to the pro

Re: Kafka 08 clients

2013-08-10 Thread Scott Clasen
bpot/poseidon on github is a ruby 0.8 client, works fine for me Sent from my iPhone On Aug 10, 2013, at 3:08 PM, Timothy Chen wrote: > That's definitely means it's not up to date to the protocol, I'm tried the > java client and it was working with latest 0.8 api. > > Not sure about any other l

Re: Kafka 08 clients

2013-08-10 Thread Timothy Chen
That's definitely means it's not up to date to the protocol, I'm tried the java client and it was working with latest 0.8 api. Not sure about any other languages. Tim On Sat, Aug 10, 2013 at 2:55 PM, Mark wrote: > Are all Kafka clients working with the latest version of Kafka? > > I tried the

Kafka 08 clients

2013-08-10 Thread Mark
Are all Kafka clients working with the latest version of Kafka? I tried the kafka-rb client and a simple example listed in the README but I keep getting a nasty error require 'kafka' producer = Kafka::Producer.new message = Kafka::Message.new("some random message content") producer.push(message)