Jar

Kafka Commit Log Messaging Process

ClassPath

You’ll need to make sure the JDBC driver is available on the Kafka Connect process’s CLASSPATH.

Get the classpath of a component. For instance, connect

# component may be connect, kafka, ...
COMPONENT_NAME=${COMPONENT:6}
cat /proc/$(pgrep -f $COMPONENT_NAME)/environ | tr \\0 \\n | grep -i CLASSPATH
CLASSPATH=/etc/kafka-connect/jars/*:/usr/share/java/kafka/*:/usr/share/java/confluent-common/*:/usr/share/java/kafka-serde-tools/*:/usr/share/java/monitoring-interceptors/*:/usr/bin/../share/java/kafka/*:/usr/bin/../share/java/confluent-support-metrics/*:/usr/share/java/confluent-support-metrics/*
CUB_CLASSPATH=/etc/confluent/docker/docker-utils.jar

Known location of the jar file for the jdbc connect plugin

  • Windows: confluent_home\share\java\kafka-connect-jdbc
  • Linux: /usr/share/java/kafka-connect-jdbc/

Repository

Confluent Maven repository

<repositories>

  <repository>
    <id>confluent</id>
    <url>http://packages.confluent.io/maven/</url>
  </repository>

  <!-- further repository entries here -->

</repositories>

With a direct URL, to get the Jdbc connector version 3.3.0:

Documentation / Reference





Discover More
Kafka Commit Log Messaging Process
Kafka - Stream Application

in Kafka. The stream API The Kafka cluster stores streams of records in categories called topics. configuration-parameters|Doc...
Kafka Commit Log Messaging Process
Kafka Connect - JDBC Connector

Configuration file: confluentinc/kafka-connect-jdbc/releases or the confluent repo ...



Share this page:
Follow us:
Task Runner