Getting Started with the SingleStore Debezium Connector
On this page
Prerequisites
-
An active SingleStore Helios deployment running SingleStore version 8.
7. 16 or later. Run the following command to check the SingleStore version: SELECT @@memsql_version; -
Enable Change Data Capture (
OBSERVE
queries) on the workspace.Run the following command to enable CDC: SET GLOBAL enable_observe_queries = 1; -
Install the following:
-
ZooKeeper
-
Kafka
-
Kafka Connect
-
Java 11+
-
Install the SingleStore Debezium Connector
To install the connector,
-
Download the SingleStore Debezium connector (
singlestore-debezium-connector-<version>-plugin.
) plugin from its GitHub repository.tar. gz -
Extract the archive contents to a directory.
-
Add the path of the directory where the plugin is extracted to the Kafka Connect's plugin path.
Set the plugin.
property in thepath connect-distributed.
file.properties For example, if the archive is extracted to the /home/user/kafka/plugins/singlestore-debezium-connector directory, set plugin.
to /home/user/kafka/plugins/ directory.path -
Restart the Kafka Connect workers (process) to identify and add the plugin JARs.
Configure the Connection
After installing the connector, run the following curl
command to register the connector and configure the connection to your SingleStore deployment.
Update the following properties before running the curl
command:
-
"name"
: A unique name for the connector. -
"database.
: IP address or hostname of the SingleStore deployment.hostname" -
"database.
: Port of the SingleStore deployment.port" -
"database.
: Name of the SingleStore database user with which to access the database.user" -
"database.
: Password for the SingleStore database user.password" -
"topic.
: Prefix for the Kafka topic name.prefix" -
"database.
: Name of the SingleStore database to connect to.dbname" -
"database.
: Name of the SingleStore table in the specified database.table"
curl -i -X POST \-H "Accept:application/json" \-H "Content-Type:application/json" \<Kafka_Connect_URL>/connectors/ \-d '{"name": "<connector_name>","config":{"connector.class": "com.singlestore.debezium.SingleStoreConnector","tasks.max": "1","database.hostname": "<SingleStore_endpoint>","database.port": "<port>","database.user": "<user>","database.password": "<password>","topic.prefix": "<topic_prefix>","database.dbname": "<database>","database.table": "<table_name>","delete.handling.mode": "none"}}'
Last modified: April 1, 2025