Configuration
This section assumes that you have successfully completed the getting started guide.
Schema Changes
ParadeDB leverages PostgreSQL’s built-in logical replication to provide flexible and efficient data synchronization, and is subject to the same limitations. A well-known caveat of logical replication is that schema changes (DDL commands) are not replicated. This means that any changes to the schema on the source database, such as adding new columns or tables, will not be automatically applied to the subscriber.
To work around this, pause the subscription on the subscriber, manually apply the schema changes, then resume the subscription:
If new tables are added and your publication is not FOR ALL TABLES
, add them to the publication manually:
Granular Replication
Logical replication can be configured to replicate specific tables, column lists, or rows. Please see the Postgres documentation.
Was this page helpful?