-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does this still work with 0.7.3? #15
Comments
Kafka 0.8 is protocol incompatible with 0.7.x. I have a 0.7 branch branch of this library which is tested against 0.7.2 (should work fine with 0.7.3 as well). The client for 0.8 was a total rewrite, so there's not much in common actually. FWIW, 0.8 should be out in the next few weeks. I'd definitely recommend checking it out as it has many improvements over 0.7. Neither the 0.7 branch nor the current stuff in trunk talk to ZK. That's a big mess I want to avoid. In 0.8.1, Kafka will support centralized offset management so consumers don't need to talk to ZK directly (this is already implemented on the 0.8 branch). For this client, you cannot do multi-process consumer groups (like you can with Java/Scala, and possibly some 3rd party clients). Let me know if you have other questions. Thanks! |
Awesome, that's a huge help. I'm new to the Kafka world, but learning Can I get clarification on what you meant with "For this client, you cannot Yes? |
Yes the Scala/Java clients support consumer groups which load balance a |
I wasn't able to get it to work with kafka 0.7.3 running on top of zookeeper. Barfed when instantiating the KafkaClient object. Said it failed to connect.
My server is definitely running - I was able to get another python kafka client (https://github.com/dsully/pykafka) to work. But it seems like this is the official client and I want to be a good citizen here.
The text was updated successfully, but these errors were encountered: