docker compose example - clickhouse- kafka-connect #152
Answered
by
Paultagoras
robinjohn29
asked this question in
Q&A
-
Is there an example of adding clickhouse-sink-connector plugin to kafka connect via docker-compose that can be shared? |
Beta Was this translation helpful? Give feedback.
Answered by
Paultagoras
Aug 3, 2023
Replies: 1 comment
-
Hi @robinjohn29 - the bits you need are:
and
That maps a folder (in the example, called DockerShare on my local mac) and adds it to the plugin path. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Paultagoras
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @robinjohn29 - the bits you need are:
volumes: - "~/DockerShare:/usr/share/dockershare/:ro"
and
CONNECT_PLUGIN_PATH: "/usr/share/java,/usr/share/confluent-hub-components,/usr/share/dockershare"
That maps a folder (in the example, called DockerShare on my local mac) and adds it to the plugin path.