Connect with Confluent Platform
On this page
This tutorial shows how to connect to your SingleStore databases from Confluent Platform using the SingleStore Debezium connector.
Refer to Confluent Platform Documentation for related information.
Prerequisites
-
An active SingleStore deployment with
OBSERVE
(CDC) queries enabled.Refer to Enable CDC for more information. Run the following command to enable CDC: SET GLOBAL enable_observe_queries = 1; -
Docker
Connect Confluent Platform to SingleStore
To connect to your SingleStore databases from Confluent Platform using the SingleStore Debezium connector,
-
Create a new directory named quickstart.
-
Create a
docker-compose.
file in the directory and add the following configuration to theyml yml
file.---services:zookeeper:image: confluentinc/cp-zookeeper:7.8.0hostname: zookeepercontainer_name: zookeeperports:- "2181:2181"environment:ZOOKEEPER_CLIENT_PORT: 2181ZOOKEEPER_TICK_TIME: 2000healthcheck:test: [ "CMD", "nc", "-z", "localhost", "2181" ]start_period: 5mstart_interval: 10sinterval: 1mtimeout: 10sretries: 5broker:image: confluentinc/cp-server:7.8.0hostname: brokercontainer_name: brokerdepends_on:- zookeeperports:- "9092:9092"- "9101:9101"environment:KAFKA_BROKER_ID: 1KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181'KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXTKAFKA_ADVERTISED_LISTENERS: PLAINTEXT://broker:29092,PLAINTEXT_HOST://localhost:9092KAFKA_METRIC_REPORTERS: io.confluent.metrics.reporter.ConfluentMetricsReporterKAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0KAFKA_CONFLUENT_LICENSE_TOPIC_REPLICATION_FACTOR: 1KAFKA_CONFLUENT_BALANCER_TOPIC_REPLICATION_FACTOR: 1KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1KAFKA_JMX_PORT: 9101KAFKA_JMX_HOSTNAME: localhostKAFKA_CONFLUENT_SCHEMA_REGISTRY_URL: http://schema-registry:8081CONFLUENT_METRICS_REPORTER_BOOTSTRAP_SERVERS: broker:29092CONFLUENT_METRICS_REPORTER_TOPIC_REPLICAS: 1CONFLUENT_METRICS_ENABLE: 'true'CONFLUENT_SUPPORT_CUSTOMER_ID: 'anonymous'healthcheck:test: [ "CMD", "nc", "-z", "localhost", "9092" ]start_period: 5mstart_interval: 10sinterval: 1mtimeout: 10sretries: 5schema-registry:image: confluentinc/cp-schema-registry:7.8.0hostname: schema-registrycontainer_name: schema-registrydepends_on:- brokerports:- "8081:8081"environment:SCHEMA_REGISTRY_HOST_NAME: schema-registrySCHEMA_REGISTRY_KAFKASTORE_BOOTSTRAP_SERVERS: 'broker:29092'SCHEMA_REGISTRY_LISTENERS: http://0.0.0.0:8081healthcheck:test: [ "CMD", "nc", "-z", "localhost", "8081" ]start_period: 5mstart_interval: 10sinterval: 1mtimeout: 10sretries: 5connect:image: confluentinc/cp-server-connect:7.8.0hostname: connectcontainer_name: connectdepends_on:- broker- schema-registryports:- "8083:8083"volumes:- ./plugins:/tmp/connect-pluginsenvironment:CONNECT_BOOTSTRAP_SERVERS: 'broker:29092'CONNECT_REST_ADVERTISED_HOST_NAME: connectCONNECT_GROUP_ID: compose-connect-groupCONNECT_CONFIG_STORAGE_TOPIC: docker-connect-configsCONNECT_CONFIG_STORAGE_REPLICATION_FACTOR: 1CONNECT_OFFSET_FLUSH_INTERVAL_MS: 10000CONNECT_OFFSET_STORAGE_TOPIC: docker-connect-offsetsCONNECT_OFFSET_STORAGE_REPLICATION_FACTOR: 1CONNECT_STATUS_STORAGE_TOPIC: docker-connect-statusCONNECT_STATUS_STORAGE_REPLICATION_FACTOR: 1CONNECT_KEY_CONVERTER: org.apache.kafka.connect.storage.StringConverterCONNECT_VALUE_CONVERTER: io.confluent.connect.avro.AvroConverterCONNECT_VALUE_CONVERTER_SCHEMA_REGISTRY_URL: http://schema-registry:8081# CLASSPATH required due to CC-2422CLASSPATH: /usr/share/java/monitoring-interceptors/monitoring-interceptors-7.8.0.jarCONNECT_PRODUCER_INTERCEPTOR_CLASSES: "io.confluent.monitoring.clients.interceptor.MonitoringProducerInterceptor"CONNECT_CONSUMER_INTERCEPTOR_CLASSES: "io.confluent.monitoring.clients.interceptor.MonitoringConsumerInterceptor"CONNECT_PLUGIN_PATH: "/usr/share/java,/usr/share/confluent-hub-components,/tmp/connect-plugins"CONNECT_LOG4J_LOGGERS: org.apache.zookeeper=ERROR,org.I0Itec.zkclient=ERROR,org.reflections=ERRORhealthcheck:test: [ "CMD", "nc", "-z", "localhost", "8083" ]start_period: 5mstart_interval: 10sinterval: 1mtimeout: 10sretries: 5control-center:image: confluentinc/cp-enterprise-control-center:7.8.0hostname: control-centercontainer_name: control-centerdepends_on:- broker- schema-registry- connectports:- "9021:9021"environment:CONTROL_CENTER_BOOTSTRAP_SERVERS: 'broker:29092'CONTROL_CENTER_CONNECT_CONNECT-DEFAULT_CLUSTER: 'connect:8083'CONTROL_CENTER_SCHEMA_REGISTRY_URL: "http://schema-registry:8081"CONTROL_CENTER_REPLICATION_FACTOR: 1CONTROL_CENTER_INTERNAL_TOPICS_PARTITIONS: 1CONTROL_CENTER_MONITORING_INTERCEPTOR_TOPIC_PARTITIONS: 1CONFLUENT_METRICS_TOPIC_REPLICATION: 1PORT: 9021healthcheck:test: [ "CMD", "curl", "-f", "http://localhost:9021" ]start_period: 5mstart_interval: 10sinterval: 1mtimeout: 10sretries: 5 -
Create a directory named plugins in the quickstart directory.
-
Download the SingleStore Debezium Connector .
zip archive from GitHub and unpack it in the plugins directory. After unpacking the connector, the quickstart directory has the following structure: quickstart/ ├─ plugins/ │ ├─ singlestore-singlestore-debezium-connector-<version>/ ├─ docker-compose.yml
-
Start Confluent Platform.
Run the following command from the quickstart directory: docker compose up -d[+] Running 6/6 ✔ Network quickstart_default Created ✔ Container zookeeper Started ✔ Container broker Started ✔ Container schema-registry Started ✔ Container connect Started ✔ Container control-center Started
-
When the previous command completes and all the modules are running, run the following command to verify the status of the services:
docker compose psNAME IMAGE COMMAND SERVICE CREATED STATUS PORTS broker confluentinc/cp-server:7.8.0 "/etc/confluent/dock…" broker 2 minutes ago Up 2 minutes (healthy) 0.0.0.0:9092->9092/tcp, :::9092->9092/tcp, 0.0.0.0:9101->9101/tcp, :::9101->9101/tcp connect confluentinc/cp-server-connect:7.8.0 "/etc/confluent/dock…" connect 2 minutes ago Up About a minute (healthy) 0.0.0.0:8083->8083/tcp, :::8083->8083/tcp, 9092/tcp control-center confluentinc/cp-enterprise-control-center:7.8.0 "/etc/confluent/dock…" control-center 2 minutes ago Up About a minute (healthy) 0.0.0.0:9021->9021/tcp, :::9021->9021/tcp schema-registry confluentinc/cp-schema-registry:7.8.0 "/etc/confluent/dock…" schema-registry 2 minutes ago Up 2 minutes (healthy) 0.0.0.0:8081->8081/tcp, :::8081->8081/tcp zookeeper confluentinc/cp-zookeeper:7.8.0 "/etc/confluent/dock…" zookeeper 2 minutes ago Up 2 minutes (healthy) 2888/tcp, 0.0.0.0:2181->2181/tcp, :::2181->2181/tcp, 3888/tcp
-
Start the connector.
Update the connection configuration of your SingleStore deployment in the following command and then run it. curl -X POST http://localhost:8083/connectors \-H "Content-Type:application/json" \-H "Accept:application/json" \-d '{"name": "SingleStoreConnector","config":{"connector.class": "com.singlestore.debezium.SingleStoreConnector","tasks.max": "1","key.converter": "io.confluent.connect.avro.AvroConverter","key.converter.schema.registry.url": "http://schema-registry:8081","value.converter": "io.confluent.connect.avro.AvroConverter","value.converter.schema.registry.url": "http://schema-registry:8081","database.hostname": "<hostname>","database.port": "<port>","database.user": "<user>","database.password": "<password>","topic.prefix": "<prefix>","database.dbname": "<database>","database.table": "<table>"}}' -
Verify that the CDC events are populated in the topic.
The connector starts streaming changes to the table into the Kafka topic. The Kafka topic name is in the <topic.
format.prefix>. <database. dbname>. <database. table> -
Go to http://localhost:9021/clusters to open the Confluent Control Center instance.
-
Select controlcenter.
cluster > Topics <your_ topic> > Messages to view the change events for the table.
Last modified: March 31, 2025