Release Notes
Announcements
wal_level in the source database must be set to logical.max_replication_slots and max_wal_senders values in the target database must be greater than the total number of databases to be migrated.max_worker_processes value in the target database must be greater than the max_logical_replication_workers value.wal_level, max_replication_slots, max_worker_processes, and max_wal_senders as follows:$PGDATA.postgresql.conf file and modify wal_level.wal_level = logical
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)
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