-
Notifications
You must be signed in to change notification settings - Fork 61
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
Failed to find any class that implements Connector #23
Comments
Anybody is working on this issue? |
I am having the exact same issue. The same connector said to not be found is in the list of available connectors. |
Found the problem. As the confluent documentation writes: "To install a new plugin place it in the CLASSPATH of the Kafka Connect process" |
I am facing same issue. i am using windows and running below command: Still failing with below error: java.util.concurrent.ExecutionException: org.apache.kafka.connect.errors.ConnectException: Failed to find any class that implements Connector and which name matches org.apache.kafka.connect |
Getting the same issue. Did anybody find a solution? |
I got the similar issue while installing a custom connector. To resolve that I created another directory customconnector inside plugin.path /opt/connectors. Extracted contents of shaded jar into the customconnector directory. |
"plugin.path=/path/to/your/connectors" should also be set in "/path/to/kafka/config/connect-distributed.properties" |
I am having the same error. Anybody solved the issue? I am having this error on Debezium's MongoDB Source Connector. |
Hi, I know I am asking quite late (2 years late) but have you been able to solve this problem? Thanks! |
Hope I am not too late into this. If you're using windows make sure your plugin.path uses *nix-based path, now Windows based. Do not use |
I'm having the same issue as @hamzanasirr, trying to run |
the last choice is to copy the jars to $KAFAK_HOME/libs ,and that helped me. |
Adding the trailing slash at the end of the plugin path variable solves the issue. |
Any working solutions? |
In my case, I wrote if you wrote |
I got same issue. I set |
I solved it. my kafka version is 3.3.1,when debezium version is 2.0 it doesn't works. I replace my debezium version to 1.9 it works well. |
Hello.
I placed .jar (with or without dependencies) into plugins folder, but when I'm trying to create connector (via post request) - it gives me an error:
The classname, which I specified in "connector.class" property is present in list below (list of available connectors).
For comparison, Mongo sync from this pack: https://github.com/Landoop/stream-reactor
works (and creates) well.
kafka-connect-mongo doesn't creates with same error too.
Docker log: https://gist.github.com/vlad1777d/7cd9a8744fe2f6ca5e8c0a3f57834d89
Docker Compose .yml file: docker-compose.yml.txt
Build was successful:
The text was updated successfully, but these errors were encountered: