-
Notifications
You must be signed in to change notification settings - Fork 45
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
Kafka 0.10.0.0+ support #14
Comments
It looks like the solution is as simple as changing |
I am using confluent 2.0.0 version , and getting following error while starting the service Kafka version used in pom.xml is 0.10.1.1 |
Sorry, my previous comment here was completely incorrect, I don't know how I could possibly have thought it worked when there are definitely SDK changes between 0.9 and 0.10. However, Kafka 0.10.1.1 is now supported by the master branch of the project. |
Also, please keep in mind that Kafka 0.10.0 and 0.10.1 have incompatible protocols. If you are using Kafka 0.10.0 on your server, you need to run Kafka 0.10.0 client as well. |
@RobinDaugherty you can force kafka server to use old protocols with this 2 params in "server.properties":
Anyways i'll try the master this weekend :D |
@suizman will those affect the protocol used by a producer (like Kafka Connect) connecting to a Kafka broker? |
@RobinDaugherty yes, but Kafka Connect producer should be capable of writing the messages with the new 0.10.0+ format |
handle task config NPEs
I'm trying to run the plugin against Kafka 0.10.0.1 and i'm getting this error:
It seems that "org.apache.kafka.common.config.ConfigDef.define" method is missing in the new version..
The text was updated successfully, but these errors were encountered: