--- title: "Upgrade" id: logical-replication-upgrade pg_version: "20devel" --- ## 29.14. Upgrade Migration of **logical replication clusters** is possible only when all the members of the old logical replication clusters are version 17.0 or later. ### 29.14.1. Prepare for Publisher Upgrades pg_upgrade attempts to migrate logical slots. This helps avoid the need for manually defining the same logical slots on the new publisher. Migration of logical slots is only supported when the old cluster is version 17.0 or later. Logical slots on clusters before version 17.0 will silently be ignored. Before you start upgrading the publisher cluster, ensure that the subscription is temporarily disabled, by executing [`ALTER SUBSCRIPTION ... DISABLE`](sql-altersubscription.md). Re-enable the subscription after the upgrade. There are some prerequisites for pg_upgrade to be able to upgrade the logical slots. If these are not met an error will be reported. - The new cluster must have [`wal_level`](runtime-config-wal.md#guc-wal-level) as `replica` or `logical`. - The new cluster must have [`max_replication_slots`](runtime-config-replication.md#guc-max-replication-slots) configured to a value greater than or equal to the number of slots present in the old cluster. - The output plugins referenced by the slots in the old cluster must be installed in the new PostgreSQL executable directory. - The old cluster has replicated all the transactions and logical decoding messages to subscribers. - All slots in the old cluster must be usable, i.e., their [pg_replication_slots](view-pg-replication-slots.md).`conflicting` is `false`. - The new cluster must not have any permanent logical slots; i.e., any existing logical slots must have [pg_replication_slots](view-pg-replication-slots.md).`temporary` set to `true`. ### 29.14.2. Prepare for Subscriber Upgrades Setup the [subscriber configurations](logical-replication-config.md#logical-replication-config-subscriber) in the new subscriber. pg_upgrade attempts to migrate subscription dependencies which includes the subscription's table information present in [pg_subscription_rel](catalog-pg-subscription-rel.md) system catalog and also the subscription's replication origin. This allows logical replication on the new subscriber to continue from where the old subscriber was up to. Migration of subscription dependencies is only supported when the old cluster is version 17.0 or later. Subscription dependencies on clusters before version 17.0 will silently be ignored. > [!NOTE] > Commit timestamps and origin data are not preserved during the upgrade. As a result, even if [`retain_dead_tuples`](sql-createsubscription.md#sql-createsubscription-params-with-retain-dead-tuples) is enabled, the upgraded subscriber may be unable to detect conflicts or log relevant commit timestamps and origins when applying changes from the publisher occurred before the upgrade. Additionally, immediately after the upgrade, the vacuum may remove the deleted rows that are required for conflict detection. This can affect the changes that were not replicated before the upgrade. To ensure consistent conflict tracking, users should ensure that all potentially conflicting changes are replicated to the subscriber before initiating the upgrade. There are some prerequisites for pg_upgrade to be able to upgrade the subscriptions. If these are not met an error will be reported. - All the subscription tables in the old subscriber should be in state `i` (initialize) or `r` (ready). This can be verified by checking [pg_subscription_rel](catalog-pg-subscription-rel.md).`srsubstate`. - The replication origin entry corresponding to each of the subscriptions should exist in the old cluster. This can be found by checking [pg_subscription](catalog-pg-subscription.md) and [pg_replication_origin](catalog-pg-replication-origin.md) system tables. - The new cluster must have [`max_active_replication_origins`](runtime-config-replication.md#guc-max-active-replication-origins) configured to a value greater than or equal to the number of subscriptions present in the old cluster. - If there are subscriptions with retain_dead_tuples enabled, the reserved replication slot "`pg_conflict_detection`" must not exist in the new cluster. Additionally, the [`wal_level`](runtime-config-wal.md#guc-wal-level) on the new cluster must be set to `replica` or `logical`. ### 29.14.3. Upgrading Logical Replication Clusters While upgrading a subscriber, write operations can be performed in the publisher. These changes will be replicated to the subscriber once the subscriber upgrade is completed. > [!NOTE] > The logical replication restrictions apply to logical replication cluster upgrades also. See [Section 29.9](logical-replication-restrictions.md) for details. > The prerequisites of publisher upgrade apply to logical replication cluster upgrades also. See [Section 29.14.1](logical-replication-upgrade.md#prepare-publisher-upgrades) for details. > The prerequisites of subscriber upgrade apply to logical replication cluster upgrades also. See [Section 29.14.2](logical-replication-upgrade.md#prepare-subscriber-upgrades) for details. > [!WARNING] > Upgrading logical replication cluster requires multiple steps to be performed on various nodes. Because not all operations are transactional, the user is advised to take backups as described in [Section 25.3.2](continuous-archiving.md#backup-base-backup). The steps to upgrade the following logical replication clusters are detailed below: - Follow the steps specified in [Section 29.14.3.1](logical-replication-upgrade.md#steps-two-node-logical-replication-cluster) to upgrade a two-node logical replication cluster. - Follow the steps specified in [Section 29.14.3.2](logical-replication-upgrade.md#steps-cascaded-logical-replication-cluster) to upgrade a cascaded logical replication cluster. - Follow the steps specified in [Section 29.14.3.3](logical-replication-upgrade.md#steps-two-node-circular-logical-replication-cluster) to upgrade a two-node circular logical replication cluster. #### 29.14.3.1. Steps to Upgrade a Two-node Logical Replication Cluster Let's say publisher is in `node1` and subscriber is in `node2`. The subscriber `node2` has a subscription `sub1_node1_node2` which is subscribing the changes from `node1`. 1. Disable all the subscriptions on `node2` that are subscribing the changes from `node1` by using [`ALTER SUBSCRIPTION ... DISABLE`](sql-altersubscription.md#sql-altersubscription-params-disable), e.g.: /* node2 # */ ALTER SUBSCRIPTION sub1_node1_node2 DISABLE; 2. Stop the publisher server in `node1`, e.g.: pg_ctl -D /opt/PostgreSQL/data1 stop 3. Initialize `data1_upgraded` instance by using the required newer version. 4. Upgrade the publisher `node1`'s server to the required newer version, e.g.: pg_upgrade --old-datadir "/opt/PostgreSQL/postgres/17/data1" --new-datadir "/opt/PostgreSQL/postgres/18/data1_upgraded" --old-bindir "/opt/PostgreSQL/postgres/17/bin" --new-bindir "/opt/PostgreSQL/postgres/18/bin" 5. Start the upgraded publisher server in `node1`, e.g.: pg_ctl -D /opt/PostgreSQL/data1_upgraded start -l logfile 6. Stop the subscriber server in `node2`, e.g.: pg_ctl -D /opt/PostgreSQL/data2 stop 7. Initialize `data2_upgraded` instance by using the required newer version. 8. Upgrade the subscriber `node2`'s server to the required new version, e.g.: pg_upgrade --old-datadir "/opt/PostgreSQL/postgres/17/data2" --new-datadir "/opt/PostgreSQL/postgres/18/data2_upgraded" --old-bindir "/opt/PostgreSQL/postgres/17/bin" --new-bindir "/opt/PostgreSQL/postgres/18/bin" 9. Start the upgraded subscriber server in `node2`, e.g.: pg_ctl -D /opt/PostgreSQL/data2_upgraded start -l logfile 10. On `node2`, create any tables that were created in the upgraded publisher `node1` server between [Step 1](logical-replication-upgrade.md#two-node-cluster-disable-subscriptions-node2) and now, e.g.: /* node2 # */ CREATE TABLE distributors (did integer PRIMARY KEY, name varchar(40)); 11. Enable all the subscriptions on `node2` that are subscribing the changes from `node1` by using [`ALTER SUBSCRIPTION ... ENABLE`](sql-altersubscription.md#sql-altersubscription-params-enable), e.g.: /* node2 # */ ALTER SUBSCRIPTION sub1_node1_node2 ENABLE; 12. Refresh the `node2` subscription's publications using [`ALTER SUBSCRIPTION ... REFRESH PUBLICATION`](sql-altersubscription.md#sql-altersubscription-params-refresh-publication), e.g.: /* node2 # */ ALTER SUBSCRIPTION sub1_node1_node2 REFRESH PUBLICATION; > [!NOTE] > In the steps described above, the publisher is upgraded first, followed by the subscriber. Alternatively, the user can use similar steps to upgrade the subscriber first, followed by the publisher. #### 29.14.3.2. Steps to Upgrade a Cascaded Logical Replication Cluster Let's say we have a cascaded logical replication setup `node1`->`node2`->`node3`. Here `node2` is subscribing the changes from `node1` and `node3` is subscribing the changes from `node2`. The `node2` has a subscription `sub1_node1_node2` which is subscribing the changes from `node1`. The `node3` has a subscription `sub1_node2_node3` which is subscribing the changes from `node2`. 1. Disable all the subscriptions on `node2` that are subscribing the changes from `node1` by using [`ALTER SUBSCRIPTION ... DISABLE`](sql-altersubscription.md#sql-altersubscription-params-disable), e.g.: /* node2 # */ ALTER SUBSCRIPTION sub1_node1_node2 DISABLE; 2. Stop the server in `node1`, e.g.: pg_ctl -D /opt/PostgreSQL/data1 stop 3. Initialize `data1_upgraded` instance by using the required newer version. 4. Upgrade the `node1`'s server to the required newer version, e.g.: pg_upgrade --old-datadir "/opt/PostgreSQL/postgres/17/data1" --new-datadir "/opt/PostgreSQL/postgres/18/data1_upgraded" --old-bindir "/opt/PostgreSQL/postgres/17/bin" --new-bindir "/opt/PostgreSQL/postgres/18/bin" 5. Start the upgraded server in `node1`, e.g.: pg_ctl -D /opt/PostgreSQL/data1_upgraded start -l logfile 6. Disable all the subscriptions on `node3` that are subscribing the changes from `node2` by using [`ALTER SUBSCRIPTION ... DISABLE`](sql-altersubscription.md#sql-altersubscription-params-disable), e.g.: /* node3 # */ ALTER SUBSCRIPTION sub1_node2_node3 DISABLE; 7. Stop the server in `node2`, e.g.: pg_ctl -D /opt/PostgreSQL/data2 stop 8. Initialize `data2_upgraded` instance by using the required newer version. 9. Upgrade the `node2`'s server to the required new version, e.g.: pg_upgrade --old-datadir "/opt/PostgreSQL/postgres/17/data2" --new-datadir "/opt/PostgreSQL/postgres/18/data2_upgraded" --old-bindir "/opt/PostgreSQL/postgres/17/bin" --new-bindir "/opt/PostgreSQL/postgres/18/bin" 10. Start the upgraded server in `node2`, e.g.: pg_ctl -D /opt/PostgreSQL/data2_upgraded start -l logfile 11. On `node2`, create any tables that were created in the upgraded publisher `node1` server between [Step 1](logical-replication-upgrade.md#cascaded-cluster-disable-sub-node1-node2) and now, e.g.: /* node2 # */ CREATE TABLE distributors (did integer PRIMARY KEY, name varchar(40)); 12. Enable all the subscriptions on `node2` that are subscribing the changes from `node1` by using [`ALTER SUBSCRIPTION ... ENABLE`](sql-altersubscription.md#sql-altersubscription-params-enable), e.g.: /* node2 # */ ALTER SUBSCRIPTION sub1_node1_node2 ENABLE; 13. Refresh the `node2` subscription's publications using [`ALTER SUBSCRIPTION ... REFRESH PUBLICATION`](sql-altersubscription.md#sql-altersubscription-params-refresh-publication), e.g.: /* node2 # */ ALTER SUBSCRIPTION sub1_node1_node2 REFRESH PUBLICATION; 14. Stop the server in `node3`, e.g.: pg_ctl -D /opt/PostgreSQL/data3 stop 15. Initialize `data3_upgraded` instance by using the required newer version. 16. Upgrade the `node3`'s server to the required new version, e.g.: pg_upgrade --old-datadir "/opt/PostgreSQL/postgres/17/data3" --new-datadir "/opt/PostgreSQL/postgres/18/data3_upgraded" --old-bindir "/opt/PostgreSQL/postgres/17/bin" --new-bindir "/opt/PostgreSQL/postgres/18/bin" 17. Start the upgraded server in `node3`, e.g.: pg_ctl -D /opt/PostgreSQL/data3_upgraded start -l logfile 18. On `node3`, create any tables that were created in the upgraded `node2` between [Step 6](logical-replication-upgrade.md#cascaded-cluster-disable-sub-node2-node3) and now, e.g.: /* node3 # */ CREATE TABLE distributors (did integer PRIMARY KEY, name varchar(40)); 19. Enable all the subscriptions on `node3` that are subscribing the changes from `node2` by using [`ALTER SUBSCRIPTION ... ENABLE`](sql-altersubscription.md#sql-altersubscription-params-enable), e.g.: /* node3 # */ ALTER SUBSCRIPTION sub1_node2_node3 ENABLE; 20. Refresh the `node3` subscription's publications using [`ALTER SUBSCRIPTION ... REFRESH PUBLICATION`](sql-altersubscription.md#sql-altersubscription-params-refresh-publication), e.g.: /* node3 # */ ALTER SUBSCRIPTION sub1_node2_node3 REFRESH PUBLICATION; #### 29.14.3.3. Steps to Upgrade a Two-node Circular Logical Replication Cluster Let's say we have a circular logical replication setup `node1`->`node2` and `node2`->`node1`. Here `node2` is subscribing the changes from `node1` and `node1` is subscribing the changes from `node2`. The `node1` has a subscription `sub1_node2_node1` which is subscribing the changes from `node2`. The `node2` has a subscription `sub1_node1_node2` which is subscribing the changes from `node1`. 1. Disable all the subscriptions on `node2` that are subscribing the changes from `node1` by using [`ALTER SUBSCRIPTION ... DISABLE`](sql-altersubscription.md#sql-altersubscription-params-disable), e.g.: /* node2 # */ ALTER SUBSCRIPTION sub1_node1_node2 DISABLE; 2. Stop the server in `node1`, e.g.: pg_ctl -D /opt/PostgreSQL/data1 stop 3. Initialize `data1_upgraded` instance by using the required newer version. 4. Upgrade the `node1`'s server to the required newer version, e.g.: pg_upgrade --old-datadir "/opt/PostgreSQL/postgres/17/data1" --new-datadir "/opt/PostgreSQL/postgres/18/data1_upgraded" --old-bindir "/opt/PostgreSQL/postgres/17/bin" --new-bindir "/opt/PostgreSQL/postgres/18/bin" 5. Start the upgraded server in `node1`, e.g.: pg_ctl -D /opt/PostgreSQL/data1_upgraded start -l logfile 6. Enable all the subscriptions on `node2` that are subscribing the changes from `node1` by using [`ALTER SUBSCRIPTION ... ENABLE`](sql-altersubscription.md#sql-altersubscription-params-enable), e.g.: /* node2 # */ ALTER SUBSCRIPTION sub1_node1_node2 ENABLE; 7. On `node1`, create any tables that were created in `node2` between [Step 1](logical-replication-upgrade.md#circular-cluster-disable-sub-node2) and now, e.g.: /* node1 # */ CREATE TABLE distributors (did integer PRIMARY KEY, name varchar(40)); 8. Refresh the `node1` subscription's publications to copy initial table data from `node2` using [`ALTER SUBSCRIPTION ... REFRESH PUBLICATION`](sql-altersubscription.md#sql-altersubscription-params-refresh-publication), e.g.: /* node1 # */ ALTER SUBSCRIPTION sub1_node2_node1 REFRESH PUBLICATION; 9. Disable all the subscriptions on `node1` that are subscribing the changes from `node2` by using [`ALTER SUBSCRIPTION ... DISABLE`](sql-altersubscription.md#sql-altersubscription-params-disable), e.g.: /* node1 # */ ALTER SUBSCRIPTION sub1_node2_node1 DISABLE; 10. Stop the server in `node2`, e.g.: pg_ctl -D /opt/PostgreSQL/data2 stop 11. Initialize `data2_upgraded` instance by using the required newer version. 12. Upgrade the `node2`'s server to the required new version, e.g.: pg_upgrade --old-datadir "/opt/PostgreSQL/postgres/17/data2" --new-datadir "/opt/PostgreSQL/postgres/18/data2_upgraded" --old-bindir "/opt/PostgreSQL/postgres/17/bin" --new-bindir "/opt/PostgreSQL/postgres/18/bin" 13. Start the upgraded server in `node2`, e.g.: pg_ctl -D /opt/PostgreSQL/data2_upgraded start -l logfile 14. Enable all the subscriptions on `node1` that are subscribing the changes from `node2` by using [`ALTER SUBSCRIPTION ... ENABLE`](sql-altersubscription.md#sql-altersubscription-params-enable), e.g.: /* node1 # */ ALTER SUBSCRIPTION sub1_node2_node1 ENABLE; 15. On `node2`, create any tables that were created in the upgraded `node1` between [Step 9](logical-replication-upgrade.md#circular-cluster-disable-sub-node1) and now, e.g.: /* node2 # */ CREATE TABLE distributors (did integer PRIMARY KEY, name varchar(40)); 16. Refresh the `node2` subscription's publications to copy initial table data from `node1` using [`ALTER SUBSCRIPTION ... REFRESH PUBLICATION`](sql-altersubscription.md#sql-altersubscription-params-refresh-publication), e.g.: /* node2 # */ ALTER SUBSCRIPTION sub1_node1_node2 REFRESH PUBLICATION;