Debezium
Debezium is an open-source distributed platform for change data capture (CDC) that captures row-level changes in databases and streams them as event logs, typically via Apache Kafka.
5 resources across 2 libraries
Glossary Terms(2)
Confluent
Confluent is a data streaming platform built around Apache Kafka, offering a fully managed cloud service and enterprise tooling — schema management, stream pro…
Debezium
Debezium is an open-source distributed platform for change data capture (CDC) that captures row-level changes in databases and streams them as event logs, typi…
Interview Questions(3)
What is the Outbox Pattern?
The outbox pattern solves the dual-write problem by writing both a business state change and the event describing it into the same local database transaction,…
What is Change Data Capture (CDC)?
Change data capture is a technique for detecting and streaming every row-level insert, update, and delete made to a database as an ordered sequence of events,…
What Is the Transactional Outbox Pattern?
The transactional outbox pattern solves the dual-write problem by writing a business change and its corresponding event into the same local database transactio…