Release Notes
Product Announcements
wal_level of the source database must be logical.max_replication_slots and max_wal_senders parameters in the source database must be greater than the total number of databases to be migrated (retain extra connections).persistence attribute of the tables to be migrated in the source database must be p (permanent tables); otherwise, replication is not supported, and hence logical migration is not possible.REPLICA IDENTITY attribute is set to NOTHING), the verification task will report a warning.= operator (json/point/polygon/txid_snapshot/xml), the verification will fail. You need to modify the table without a primary key as prompted or deselect the primary key table option; otherwise, the task cannot proceed.wal_level, max_replication_slots, and max_wal_senders is as follows.wal_level = logicalmax_replication_slots = 10 //Modify according to actual needs.max_wal_senders = 10 //Modify according to actual needs.
postgres=> select name,setting from pg_settings where name='wal_level';name | setting-----------+---------wal_level | logical(1 row)postgres=> select name,setting from pg_settings where name='max_replication_slots';name | setting-----------------------+---------max_replication_slots | 10(1 row)postgres=> select name,setting from pg_settings where name='max_wal_senders';name | setting-----------------+---------max_wal_senders | 10(1 row)
REPLICA IDENTITY attribute is set to NOTHING), the verification task will report a warning.ALTER TABLE schemaName.tableName REPLICA IDENTITY FULL;
Was this page helpful?
You can also Contact sales or Submit a Ticket for help.
Help us improve! Rate your documentation experience in 5 mins.
Feedback