-
Notifications
You must be signed in to change notification settings - Fork 162
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
Error connecting on Kafka version 0.8.1.1 #267
Comments
Some other things noticed, here the library is trying to use
|
Hi @wilbertom ! You could try using the 0.8.2 implementation - KafkaEx doesn't do any actual runtime checking against the broker's reported version. 0.8.1 may or may not support "consumer group" offset management, but the fully automatically rebalancing consumer groups that we implented with Are you stuck with 0.8.1? Kafka has changed quite a lot and as a Kafka user I'd heartily recommend at LEAST upgrading to 0.9.0 if not a newer version. 0.9.0 supports a lot of features that 0.8.x did not and there have been lots of bug fixes. As for #260 - that is a call for discussion. So if you have a strong need for 0.8.x support, please report it there. I can't guarantee that we will continue to support it, but we almost surely won't if no one in the community tells us that it's needed (each version we support adds some amount of maintenance burden). |
I am positive 0.8.1 does not support consumer group offset management, offsets were still stored in zookeeper in 0.8.1 |
@dantswain I'll leave my comments about versions in #260. @bjhaid yes that is the behaviour I was thinking of. |
Hello,
I had a short conversation about this with @dantswain about this today on slack but I wanted to open an official ticket.
When using the latest
kafka_ex
andkafka
0.8.1.1
versions, the following issue occurs while trying to start a consumer.@dantswain I'm almost certain consumer groups are supported in this version of Kafka because we use consumer groups with this version in a different consumer we run in Java, unless I'm using the wrong version while developing which would be great.
I understand if you all can't get around to this since this is an older Kafka version and probably not a priority.
If so maybe I can try to implement a patch but it might be outside my skill level since I'm just starting with Elixir.
Also given #260 I can see if you guys wouldn't even want a patch.
The text was updated successfully, but these errors were encountered: