poornima Venkatesha
10/28/2024, 4:29 PMuser
10/28/2024, 4:29 PMsql ALTER USER <user_name> REPLICATION;
- Enable logical replication on your Postgres database - Create a replication slot - Create publication and replication identities for each Postgres table you want to replicate 2. In the Airbyte UI: - Go to your Postgres source configuration - Change the replication mode to "Logical Replication (CDC)" - Enter the replication slot and publication you created 3. Specifically, in the Airbyte UI, you need to: - Change the update method to "Read Changes using Change Data Capture (CDC)" - Enter the replication slot and publication you created [Postgres Source CDC Setup](https://docs.airbyte.com/integrations/sources/postgres#setup-using-cdc) [Enabling CDC in Airbyte UI](https://docs.airbyte.com/integrations/sources/postgres#step-6-enable-cdc-replication-in-airbyte-ui) Please note that CDC has specific requirements and limitations, so make sure your Postgres setup meets these before proceeding with the change. Also, be aware that for CDC to work correctly, you must connect to primary/master databases, not replicas.