Real-Time Data Streaming with Postgres and Debezium

Upcoming talk at Postgres MetroPlex Dallas — April 2026 What is CDC? Change Data Capture (CDC) is a set of software design patterns used to determine and track the data that has changed so that action can be taken using the changed data. Instead of traditional polling (which is slow and adds load to the database), CDC allows us to stream every INSERT, UPDATE, and DELETE as it happens, with sub-second latency. ...