Change Data Capture (CDC) stream ทุก insert/update/delete ออกจาก source database — โดยทั่วไปด้วยการ อ่าน transaction log — และ publish เป็น event ที่ระบบอื่น consume ได้ เพื่อให้ store ปลายทาง sync กันโดยไม่ต้อง dual-write หรือ polling
Postgres/MySQL Debezium Kafka topic sinks
┌────────────┐ reads ┌─────────┐ emit ┌──────────┐ consume ┌───────────┐
│ WAL/binlog │ ───────▶ │ connector│ ──────▶ │ per-table│ ───────▶ │ search │
│ (tx log) │ │ │ events │ ordered │ │ warehouse │
└────────────┘ └─────────┘ └──────────┘ │ cache │
└───────────┘
