faucet-source-mysql-cdc 1.1.1

MySQL binlog (CDC) source for the faucet-stream ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(docsrs, feature(doc_cfg))]
//! MySQL binlog (CDC) source for the faucet-stream ecosystem.
//!
//! Tails the MySQL binary log via row-based replication and emits per-row
//! change events as a CDC envelope, resumable via a `{file,pos}` or
//! `{gtid_set}` bookmark.

mod config;
mod convert;
mod state;
mod stream;

pub use config::{CdcTls, MysqlCdcSourceConfig, StartPosition};
pub use state::{Bookmark, state_key};
pub use stream::MysqlCdcSource;