Deep Dive Into PostgreSQL Logical Replication
Write-Ahead Logging (WAL) Before diving into PostgreSQL logical replication, we need to know the Write-Ahead Logging (WAL). WAL’s central concept is that changes to data files (where tables and i...
Write-Ahead Logging (WAL) Before diving into PostgreSQL logical replication, we need to know the Write-Ahead Logging (WAL). WAL’s central concept is that changes to data files (where tables and i...
CDC Introduction In databases, change data capture (CDC) is a set of software design patterns used to determine and track the data that has changed (the “deltas”) so that action can be taken using...