Debezium Turns Databases Into Change Event Streams
Debezium turns databases into change event streams. It listens to database changes (binlogs, WALs, archivelogs) and sends events in standard format to Kafka, enabling real-time analytics and data integration.
🪝 Teaser Did you ever find yourself in a situation where : Team 🇦 pushes data in a given database (let's say MySQL,...) with its very own custom software Team 🇧 needs to get these data changes (INSERT, UPDATE, DELETE) as events so they can put them in let's say... an another database (MariaDB, PostgreSQL,...) Base software cannot be changed : you have to "deal with it" Eg, team B's motivation maybe to achieve datascience, RealTime Analytics, store in a datalake,... 👉 This blog post is dedicated to this case... and surprisingly : open source solutions do exist to achieve this magic!...