You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 2, 2023. It is now read-only.
using cp-kafka-connect version 5.5.2 i successful set connectors (s3, elasticsearch, etc.). after upgrading to version 6.0.1, when i try to enable the connectors, i get the following error
Failed to find any class that implements Connector and which name matches io.confluent.connect.elasticsearch.ElasticsearchSinkConnector, available connectors are ...
digging into the containers of each of which, it seems that some connect libraries are missing from /usr/share/java/kafka-connect-*
$ docker run --rm -it confluentinc/cp-kafka-connect:5.5.2 \
/bin/bash -c 'ls -x1 -d /usr/share/java/kafka-connect-*'
/usr/share/java/kafka-connect-activemq
/usr/share/java/kafka-connect-elasticsearch
/usr/share/java/kafka-connect-ibmmq
/usr/share/java/kafka-connect-jdbc
/usr/share/java/kafka-connect-jms
/usr/share/java/kafka-connect-s3
/usr/share/java/kafka-connect-storage-common
$ docker run --rm -it confluentinc/cp-kafka-connect:6.0.1 \
/bin/bash -c 'ls -x1 -d /usr/share/java/kafka-connect-*'
ls: cannot access '/usr/share/java/kafka-connect-*': No such file or directory
it this intended?
what is the shortest path to upgrade to version 6.0.1?
The text was updated successfully, but these errors were encountered:
using cp-kafka-connect version 5.5.2 i successful set connectors (s3, elasticsearch, etc.). after upgrading to version 6.0.1, when i try to enable the connectors, i get the following error
digging into the containers of each of which, it seems that some connect libraries are missing from
/usr/share/java/kafka-connect-*
The text was updated successfully, but these errors were encountered: