Change data capture (CDC) Beta
Change data capture (CDC) in YugabyteDB provides technology to ensure that any changes in data (inserts, updates, and deletions) are identified, captured, and automatically applied to another data repository instance, or made available for consumption by applications and other tools.
Use cases
Change data capture is useful in a number of scenarios, such as the ones described here.
Microservice-oriented architectures
Some microservices require a stream of changes to the data and using CDC in YugabyteDB can provide consumable data changes to CDC subscribers.
Asynchronous replication to remote systems
Remote systems may subscribe to a stream of data changes and then transform and consume the changes. Maintaining separate database instances for transactional and reporting purposes can be used to manage workload performance.
Multiple data center strategies
Maintaining multiple data centers enables enterprises to provide:
- High availability (HA) — Redundant systems help ensure that your operations virtually never fail.
- Geo-redundancy — Geographically dispersed servers provide resiliency against catastrophic events and natural disasters.
Compliance and auditing
Auditing and compliance requirements can require you to use CDC to maintain records of data changes.
Note
In the sections below, the terms "data center", "cluster", and "universe" are used interchangeably. We assume here that each YB universe is deployed in a single data center.Process architecture
Every YB-TServer has a CDC service
that is stateless. The main APIs provided by the CDC service are:
createCDCSDKStream
API for creating the stream on the database.getChangesCDCSDK
API that will be use by the client to get the latest set of changes.
CDC streams
Creating a new CDC stream will return a stream UUID. This is facilitated via the yb-admin tool.
Debezium
To consume the events generated by CDC, we will be using Debezium as the connector. It is an open-source distributed platform that needs to be pointed at the database using the stream ID. Steps to set up Debezium for YugabyteDB CDC are documented on the Debezium integration page.
Pushing changes to external systems
Using the Debezium connector for YugabyteDB, we can push the changes from YugabyteDB to a Kafka topic which can then be used by any end user application for the processing and analysis of the records.
CDC guarantees
Per-tablet ordered delivery guarantee
All data changes for one row, or multiple rows in the same tablet, will be received in the order in which they occur. Due to the distributed nature of the problem, however, there is no guarantee for the order across tablets.
For example, let us imagine the following scenario:
- Two rows are being updated concurrently.
- These two rows belong to different tablets.
- The first row
row #1
was updated at timet1
and the second rowrow #2
was updated at timet2
.
In this case, it is possible for CDC to push the later update corresponding to row #2
change to Kafka before pushing the earlier update, corresponding to row #1
.
At-least-once delivery
Updates for rows will be pushed at least once. With "at-least-once" delivery, you will never lose a message, but might end up being delivered to a CDC consumer more than once. This can happen in case of tablet leader change, where the old leader already pushed changes to Kafka, but the latest pushed op id
was not updated in the CDC metadata.
For example, imagine a CDC client has received changes for a row at times t1 and t3. It is possible for the client to receive those updates again.
No gaps in change stream
When you have received a change for a row for timestamp t
, you will not receive a previously unseen change for that row from an earlier timestamp. This guarantees that receiving any change implies that all earlier changes have been received for a row.