TiloBox
Back to directory
LicenseApache-2.0
GitHub stars10.2k
Last commit1 weeks ago
Tags6 topics
KafkaDatabase StreamingEvent DrivenChange Data CaptureCdcJava
Overview

Why consider Debezium?

Debezium is an open-source distributed platform for Change Data Capture (CDC). Built on Apache Kafka, it captures row-level database changes in real-time from PostgreSQL, MySQL, and MongoDB.

Guided learning

Learn Debezium by building

Practical setup notes, real use cases, and copy-ready examples in one focused guide.

1 min read 3 sections
In this guide3 sections

Overview of Debezium

Debezium streams real-time database transactions into Apache Kafka without requiring applications to poll tables. It reads database transaction write-ahead logs (WAL in PostgreSQL, Binlog in MySQL, Oplog in MongoDB) and produces immutable event records for every insert, update, and delete.

Deploying Debezium with Docker Compose

bash
1git clone https://github.com/debezium/debezium-examples.git
2cd debezium-examples/tutorial
3docker compose up -d

Registering a PostgreSQL Connector

bash
1curl -i -X POST -H "Accept:application/json" -H "Content-Type:application/json" \
2 http://localhost:8083/connectors/ -d '{
3 "name": "inventory-connector",
4 "config": {
5 "connector.class": "io.debezium.connector.postgresql.PostgresConnector",
6 "tasks.max": "1",
7 "plugin.name": "pgoutput",
8 "database.hostname": "postgres",
9 "database.port": "5432",
10 "database.user": "postgres",
11 "database.password": "postgres",
12 "database.dbname": "inventory",
13 "database.server.name": "dbserver1"
14 }
15 }'

Debezium is distributed under the Apache License Version 2.0.

Related tools

More options with a similar category or technology profile.

Debezium FAQs

Debezium is listed as a Devops Infrastructure tool on TiloBox. Review the overview, features, and official documentation on this page to decide whether it solves your specific workflow.

Start with the project's GitHub repository and official website for supported installation and deployment instructions. Test the setup with representative data or a small project before rolling it out more widely.

Debezium is listed under the Apache-2.0 license. Read the complete license text and the project's notices before using, modifying, or distributing the software.

Production readiness depends on your requirements. Review maintenance activity, security practices, documentation, backup and upgrade procedures, and compatibility with your stack; then validate it in a non-production environment.

Debezium is listed as an alternative to Oracle GoldenGate. Compare the core workflow, deployment model, integrations, and licensing against your must-have requirements before switching.