-
Notifications
You must be signed in to change notification settings - Fork 335
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
Not compatible with Kafka 3.8 libraries #781
Comments
I have the same issue. |
We have kept client libraries on Kafka 3.7.x. |
I ran into an argument with the Kafka maintainers over why they removed a public method ( |
this seems weird, I am using some connectors that suddenly broke due to this change... |
The Kafka commons Utils class removed the "join" method in apache/kafka#15823 in Kafka 3.8. Due to this reason the connector stopped working on Kafka Connect 3.8 as well. Following the example in the upstream PR, I'm replacing the usage of Utils.join with the JDK API of String.join, and updating the code accordingly. This fixes confluentinc#781
Hello, I've created #804 to address this issue. Hopefully it can be merged. |
For the time being which version from the release can be used to avoid this issue? |
The Kafka commons Utils class removed the "join" method in apache/kafka#15823 in Kafka 3.8. Due to this reason the connector stopped working on Kafka Connect 3.8 as well. Following the example in the upstream PR, I'm replacing the usage of Utils.join with the JDK API of String.join, and updating the code accordingly. This is a new version of PR 804, but rebased for 10.0.x. Fixes confluentinc#781
The Kafka commons Utils class removed the "join" method in apache/kafka#15823 in Kafka 3.8. Due to this reason the connector stopped working on Kafka Connect 3.8 as well. Following the example in the upstream PR, I'm replacing the usage of Utils.join with the JDK API of String.join, and updating the code accordingly. This is a new version of PR 804, but rebased for 10.0.x. Fixes confluentinc#781
We tried upgrading our client libraries to Kafka 3.8 and started to get an exception:
Kafka common.utils.Utils since 3.8.0 has removed the join method and replaced all uses with
String.join()
in apache/kafka#15823The text was updated successfully, but these errors were encountered: