Getting Started with the SingleStore Debezium Connector

Prerequisites

  • An active SingleStore 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 cluster. 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,

  1. Download the SingleStore Debezium connector (singlestore-debezium-connector-<version>-plugin.tar.gz) plugin from its GitHub repository.

  2. Extract the archive contents to a directory.

  3. Add the path of the directory where the plugin is extracted to the Kafka Connect's plugin path. Set the plugin.path property in the connect-distributed.properties file. For example, if the archive is extracted to the /home/user/kafka/plugins/singlestore-debezium-connector directory, set plugin.path to /home/user/kafka/plugins/ directory.

  4. 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.hostname": IP address or hostname of the SingleStore deployment.

  • "database.port": Port of the SingleStore deployment.

  • "database.user": Name of the SingleStore database user with which to access the database.

  • "database.password": Password for the SingleStore database user.

  • "topic.prefix": Prefix for the Kafka topic name.

  • "database.dbname": Name of the SingleStore database to connect to.

  • "database.table": Name of the SingleStore table in the specified database.

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

Was this article helpful?

Verification instructions

Note: You must install cosign to verify the authenticity of the SingleStore file.

Use the following steps to verify the authenticity of singlestoredb-server, singlestoredb-toolbox, singlestoredb-studio, and singlestore-client SingleStore files that have been downloaded.

You may perform the following steps on any computer that can run cosign, such as the main deployment host of the cluster.

  1. (Optional) Run the following command to view the associated signature files.

    curl undefined
  2. Download the signature file from the SingleStore release server.

    • Option 1: Click the Download Signature button next to the SingleStore file.

    • Option 2: Copy and paste the following URL into the address bar of your browser and save the signature file.

    • Option 3: Run the following command to download the signature file.

      curl -O undefined
  3. After the signature file has been downloaded, run the following command to verify the authenticity of the SingleStore file.

    echo -n undefined |
    cosign verify-blob --certificate-oidc-issuer https://oidc.eks.us-east-1.amazonaws.com/id/CCDCDBA1379A5596AB5B2E46DCA385BC \
    --certificate-identity https://kubernetes.io/namespaces/freya-production/serviceaccounts/job-worker \
    --bundle undefined \
    --new-bundle-format -
    Verified OK