Expand description
Change Data Capture connectors for databases.
Change Data Capture (CDC) source connectors.
PostgreSQL uses logical replication (pgoutput); MySQL uses the
binary log with GTID support.
Modules§
- mysql
- MySQL binlog replication CDC source connector. Reads row-level changes from
a MySQL server’s binlog (GTID or file/position based), decodes them via the
decodersubmodule, resolves column types againstschema::TableCache, and emits Z-setchangelog::ChangeEvents thatMySqlCdcSourceconverts into ArrowRecordBatches onpoll_batch. - postgres
PostgreSQLCDC source connector.