ScyllaDB University LIVE, FREE Virtual Training Event | March 21
Register for Free
ScyllaDB Documentation Logo Documentation
  • Server
  • Cloud
  • Tools
    • ScyllaDB Manager
    • ScyllaDB Monitoring Stack
    • ScyllaDB Operator
  • Drivers
    • CQL Drivers
    • DynamoDB Drivers
  • Resources
    • ScyllaDB University
    • Community Forum
    • Tutorials
Download
ScyllaDB Docs ScyllaDB Enterprise Getting Started Scylla Integrations and Connectors Integrate Scylla with Kafka Scylla CDC Source Connector Scylla CDC Source Connector Quickstart

Caution

You're viewing documentation for a previous version. Switch to the latest stable version.

Scylla CDC Source Connector Quickstart¶

Synopsis¶

This quickstart will show you how to setup the Scylla CDC Source Connector to replicate changes made in a Scylla table using Scylla CDC.

Scylla setup¶

First, let’s setup a Scylla cluster and create a CDC-enabled table.

Scylla installation¶

For the purpose of this quickstart, we will configure a Scylla instance using Docker. You can skip this section if you have already installed Scylla. To learn more about installing Scylla in production environments, please refer to the Install Scylla page.

  1. Using Docker, follow the instructions to launch Scylla.

  2. Start the Docker container, replacing the --name and --host name parameters with your own information. For example:

    docker run --name scylla-cdc-quickstart --hostname scylla-cdc-quickstart -d scylladb/scylla
    
  3. Run docker ps to show the exposed ports. The output should be similar to this example:

    docker ps
    CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS                                                            NAMES
    4fca02217055        scylladb/scylla     "/docker-entrypoint.…"   8 seconds ago       Up 7 seconds        22/tcp, 7000-7001/tcp, 9042/tcp, 9160/tcp, 9180/tcp, 10000/tcp   scylla-cdc-quickstart
    

Creating a CDC-enabled table¶

Let’s connect to your Scylla cluster and create a new CDC-enabled table. We will create an example table by issuing the following CQL query and insert some example data:

CREATE KEYSPACE quickstart_keyspace WITH REPLICATION = {'class': 'SimpleStrategy', 'replication_factor': 1};

CREATE TABLE quickstart_keyspace.orders(
   customer_id int,
   order_id int,
   product text,
   PRIMARY KEY(customer_id, order_id)) WITH cdc = {'enabled': true};

INSERT INTO quickstart_keyspace.orders(customer_id, order_id, product) VALUES (1, 1, 'pizza');
INSERT INTO quickstart_keyspace.orders(customer_id, order_id, product) VALUES (1, 2, 'cookies');
INSERT INTO quickstart_keyspace.orders(customer_id, order_id, product) VALUES (1, 3, 'tea');

If you already have a table you wish to use, but it does not have CDC enabled, you can turn it on by using the following CQL query:

ALTER TABLE keyspace.table_name with cdc = {'enabled': true};

To learn more about Scylla CDC, visit Change Data Capture (CDC) page.

Kafka setup¶

Scylla CDC Source Connector works well with both open-source Kafka and Confluent Platform. In this quickstart we will show how to install the Confluent Platform and deploy the connector (applicable to both open-source Kafka and Confluent Platform).

Installing Confluent Platform¶

If you are new to Confluent, download Confluent Platform.

  1. In the Download Confluent Platform section fill in your email address

  2. Open the Select Deployment Type drop-down and select ZIP

  3. Accept the Terms & Conditions and click DOWNLOAD FREE

  4. You will receive an email with instructions. Download / move the file to the desired location

  5. Continue with the setup following this document

Installing Scylla CDC Source Connector¶

  1. Download or build Scylla CDC Source Connector using the project build instructions

  2. Deploy the connector:

    1. If you use Confluent Platform, move connector JAR files to the share/java folder

    2. If you use open-source Kafka, make sure that plugin.path of Kafka Connect configuration contains the folder with connector JAR files

Connector configuration¶

After you have successfully configured Scylla and Kafka, the next step is to configure the connector and start it up.

Configuration using Confluent Control Center¶

If you use Confluent Platform, the easiest way to configure and start up the Scylla CDC Source Connector is to use Confluent Control Center web interface.

  1. Open the Confluent Control Center. By default, it is started at port 9021:

    Confluent Control Center main page
  2. Click on the cluster you want to start the connector in and open the “Connect” tab:

    Confluent Control Center "Connect" tab
  3. Click on the Kafka Connect cluster:

    Confluent Control Center "connect-default" cluster
  4. Click “Add connector”:

    Confluent Control Center "Add connector"
  5. Click “ScyllaConnector (Source Connector)”:

    Confluent Control Center "ScyllaConnector (Source Connector)"
  6. Configure the connector. You need to fill in these required configuration parameters:

    1. Name: the name of this configuration

    2. Key converter class, value converter class: converters that determine the format of produced messages. You can read more about them at Kafka Connect Deep Dive – Converters and Serialization Explained

    3. Hosts: contact points of Scylla

    4. Namespace: a unique name that identifies the Scylla cluster and that is used as a prefix for all schemas, topics.

    5. Table names: the names of CDC-enabled tables you want to replicate

    For the quickstart example here are the values we will use:

    1. Name: QuickstartConnector

    2. Key converter class, value converter class: org.apache.kafka.connect.json.JsonConverter

    3. Hosts: 172.17.0.2:9042 (Scylla started in Docker)

    4. Namespace: QuickstartConnectorNamespace

    5. Table names: quickstart_keyspace.orders

    Confluent Control Center connector configuration
  7. Click “Continue” and “Launch”

  8. After a short while, a new QuickstartConnectorNamespace.quickstart_keyspace.orders topic will be automatically created and inserted rows will be replicated. You can browse them by going to the “Topics” tab, selecting QuickstartConnectorNamespace.quickstart_keyspace.orders topic, going to “Message” tab and inputting 0 to “Jump to offset” field:

    Confluent Control Center connector messages

Configuration using open-source Kafka¶

  1. Start Kafka Connect standalone using this guide. You will have to create a connector.properties file with the following contents:

    name = QuickstartConnector
    connector.class = com.scylladb.cdc.debezium.connector.ScyllaConnector
    key.converter = org.apache.kafka.connect.json.JsonConverter
    value.converter = org.apache.kafka.connect.json.JsonConverter
    scylla.cluster.ip.addresses = 172.17.0.2:9042
    scylla.name = QuickstartConnectorNamespace
    scylla.table.names = quickstart_keyspace.orders
    
  2. After starting the connector, you can see the generated messages by using kafka-console-consumer tool:

    bin/kafka-console-consumer --bootstrap-server localhost:9092 --topic QuickstartConnectorNamespace.quickstart_keyspace.orders --from-beginning
    

Additional information¶

  • Scylla CDC Source Connector GitHub project

Was this page helpful?

PREVIOUS
Scylla CDC Source Connector
NEXT
Integrate Scylla with IOTA Chronicle
  • Create an issue

On this page

  • Scylla CDC Source Connector Quickstart
    • Synopsis
    • Scylla setup
      • Scylla installation
      • Creating a CDC-enabled table
    • Kafka setup
      • Installing Confluent Platform
      • Installing Scylla CDC Source Connector
    • Connector configuration
      • Configuration using Confluent Control Center
      • Configuration using open-source Kafka
    • Additional information
ScyllaDB Enterprise
  • 2022.2
    • 2024.2
    • 2024.1
    • 2023.1
    • 2022.2
  • Getting Started
    • Install Scylla
      • ScyllaDB Web Installer for Linux
      • Scylla Unified Installer (relocatable executable)
      • Air-gapped Server Installation
      • What is in each RPM
      • Scylla Housekeeping and how to disable it
      • Scylla Developer Mode
      • Scylla Configuration Reference
    • Configure Scylla
    • ScyllaDB Requirements
      • System Requirements
      • OS Support by Platform and Version
      • Scylla in a Shared Environment
    • Migrate to ScyllaDB
      • Migration Process from Cassandra to Scylla
      • Scylla and Apache Cassandra Compatibility
      • Migration Tools Overview
    • Integration Solutions
      • Integrate Scylla with Spark
      • Integrate Scylla with KairosDB
      • Integrate Scylla with Presto
      • Integrate Scylla with Elasticsearch
      • Integrate Scylla with Kubernetes
      • Integrate Scylla with the JanusGraph Graph Data System
      • Integrate Scylla with DataDog
      • Integrate Scylla with Kafka
      • Integrate Scylla with IOTA Chronicle
      • Integrate Scylla with Spring
      • Shard-Aware Kafka Connector for Scylla
      • Install Scylla with Ansible
      • Integrate Scylla with Databricks
    • Tutorials
  • Scylla for Administrators
    • Administration Guide
    • Procedures
      • Cluster Management
      • Backup & Restore
      • Change Configuration
      • Maintenance
      • Best Practices
      • Benchmarking Scylla
      • Migrate from Cassandra to Scylla
      • Disable Housekeeping
    • Security
      • Scylla Security Checklist
      • Enable Authentication
      • Enable and Disable Authentication Without Downtime
      • Generate a cqlshrc File
      • Reset Authenticator Password
      • Enable Authorization
      • Grant Authorization CQL Reference
      • Role Based Access Control (RBAC)
      • Scylla Auditing Guide
      • Encryption: Data in Transit Client to Node
      • Encryption: Data in Transit Node to Node
      • Generating a self-signed Certificate Chain Using openssl
      • Encryption at Rest
      • LDAP Authentication
      • LDAP Authorization (Role Management)
    • Admin Tools
      • Nodetool Reference
      • CQLSh
      • REST
      • Tracing
      • Scylla SStable
      • Scylla Types
      • SSTableLoader
      • cassandra-stress
      • SSTabledump
      • SSTable2json
      • SSTable Index
      • Scylla Logs
      • Seastar Perftune
      • Virtual Tables
    • ScyllaDB Monitoring Stack
    • ScyllaDB Operator
    • ScyllaDB Manager
    • Upgrade Procedures
      • Scylla Enterprise
      • Scylla Open Source to Scylla Enterprise
      • Scylla AMI
    • System Configuration
      • System Configuration Guide
      • scylla.yaml
      • Scylla Snitches
    • Benchmarking Scylla
  • Scylla for Developers
    • Learn To Use Scylla
      • Scylla University
      • Course catalog
      • Scylla Essentials
      • Basic Data Modeling
      • Advanced Data Modeling
      • MMS - Learn by Example
      • Care-Pet an IoT Use Case and Example
    • Scylla Alternator
    • Scylla Features
      • Scylla Open Source Features
      • Scylla Enterprise Features
    • Scylla Drivers
      • Scylla CQL Drivers
      • Scylla DynamoDB Drivers
  • CQL Reference
    • CQLSh: the CQL shell
    • Appendices
    • Compaction
    • Consistency Levels
    • Consistency Level Calculator
    • Data Definition
    • Data Manipulation
    • Data Types
    • Definitions
    • Global Secondary Indexes
    • Additional Information
    • Expiring Data with Time to Live (TTL)
    • Additional Information
    • Functions
    • JSON Support
    • Materialized Views
    • Non-Reserved CQL Keywords
    • Reserved CQL Keywords
    • ScyllaDB CQL Extensions
  • Scylla Architecture
    • Scylla Ring Architecture
    • Scylla Fault Tolerance
    • Consistency Level Console Demo
    • Scylla Anti-Entropy
      • Scylla Hinted Handoff
      • Scylla Read Repair
      • Scylla Repair
    • SSTable
      • Scylla SSTable - 2.x
      • ScyllaDB SSTable - 3.x
    • Compaction Strategies
    • Raft Consensus Algorithm in ScyllaDB
  • Troubleshooting Scylla
    • Errors and Support
      • Report a Scylla problem
      • Error Messages
      • Change Log Level
    • Scylla Startup
      • Ownership Problems
      • Scylla will not Start
      • Scylla Python Script broken
    • Cluster and Node
      • Failed Decommission Problem
      • Cluster Timeouts
      • Node Joined With No Data
      • SocketTimeoutException
      • NullPointerException
    • Data Modeling
      • Scylla Large Partitions Table
      • Scylla Large Rows and Cells Table
      • Large Partitions Hunting
    • Data Storage and SSTables
      • Space Utilization Increasing
      • Disk Space is not Reclaimed
      • SSTable Corruption Problem
      • Pointless Compactions
      • Limiting Compaction
    • CQL
      • Time Range Query Fails
      • COPY FROM Fails
      • CQL Connection Table
      • Reverse queries fail
    • Scylla Monitor and Manager
      • Manager and Monitoring integration
      • Manager lists healthy nodes as down
  • Knowledge Base
    • Upgrading from experimental CDC
    • Compaction
    • Counting all rows in a table is slow
    • CQL Query Does Not Display Entire Result Set
    • When CQLSh query returns partial results with followed by “More”
    • Run Scylla and supporting services as a custom user:group
    • Decoding Stack Traces
    • Snapshots and Disk Utilization
    • DPDK mode
    • Debug your database with Flame Graphs
    • How to Change gc_grace_seconds for a Table
    • Gossip in Scylla
    • Increase Permission Cache to Avoid Non-paged Queries
    • How does Scylla LWT Differ from Apache Cassandra ?
    • Map CPUs to Scylla Shards
    • Scylla Memory Usage
    • NTP Configuration for Scylla
    • Updating the Mode in perftune.yaml After a ScyllaDB Upgrade
    • POSIX networking for Scylla
    • Scylla consistency quiz for administrators
    • Recreate RAID devices
    • How to Safely Increase the Replication Factor
    • Scylla and Spark integration
    • Increase Scylla resource limits over systemd
    • Scylla Seed Nodes
    • How to Set up a Swap Space
    • Scylla Snapshots
    • Scylla payload sent duplicated static columns
    • Stopping a local repair
    • System Limits
    • How to flush old tombstones from a table
    • Time to Live (TTL) and Compaction
    • Scylla Nodes are Unresponsive
    • Update a Primary Key
    • Using the perf utility with Scylla
    • Configure Scylla Networking with Multiple NIC/IP Combinations
  • ScyllaDB University
  • Scylla FAQ
  • Contribute to ScyllaDB
  • Glossary
  • Alternator: DynamoDB API in Scylla
    • Getting Started With ScyllaDB Alternator
    • Scylla Alternator for DynamoDB users
Docs Tutorials University Contact Us About Us
© 2025, ScyllaDB. All rights reserved. | Terms of Service | Privacy Policy | ScyllaDB, and ScyllaDB Cloud, are registered trademarks of ScyllaDB, Inc.
Last updated on 09 Apr 2025.
Powered by Sphinx 7.4.7 & ScyllaDB Theme 1.8.6