In-place Postgres or Postgres and PGD major version upgrades v5.7.0
Documentation improvements are made only to the latest version.
As per semantic versioning, PGD minor releases remain backward compatible and may include important bug fixes and enhancements.
We recommend upgrading the latest minor release as soon as possible.
If you want up-to-date information, read the latest PGD documentation.
You can upgrade a PGD node to a newer major version of Postgres or a major version of Postgres and PGD using the command-line utility pgd node upgrade.
Note
In previous versions before 5.7.0, the command used for in-place major version upgrades was bdr_pg_upgrade.
However, this command didn't have an option to upgrade both Postgres major versions and PGD versions simultaneously, as pgd node upgrade does.
pgd node upgrade is a wrapper around the standard pg_upgrade that
adds PGD-specific logic to the process to ensure a smooth upgrade.
Terminology
This terminology is used when describing the upgrade process and components involved:
Postgres cluster — The database files, both executables and data, that make up a Postgres database instance on a system when run.
Old Postgres cluster — The existing Postgres cluster to upgrade, the one from which to migrate data.
New Postgres cluster — The new Postgres cluster that data is migrated to. This Postgres cluster must be one major version ahead of the old cluster.
Precautions
Standard Postgres major version upgrade precautions apply, including the fact both Postgres clusters must meet all the requirements for pg_upgrade.
Additionally, don't use pgd node upgrade if other tools are using replication slots and replication origins.
Only PGD slots and origins are restored after the upgrade.
You must meet several prerequisites for pgd node upgrade:
- Disconnect applications using the old Postgres cluster. You can, for example, redirect them to another node in the PGD cluster.
- Configure peer authentication for both Postgres clusters. bdr_pg_upgrade requires peer authentication.
- The same PGD version must be installed on both clusters.
- The PGD version must be 4.1.0 or later. Version 3.7.22 and later is also supported.
- The new cluster must be in a shutdown state.
- You must install PGD packages in the new cluster.
- The new cluster must already be initialized and configured as needed to match the old cluster configuration.
- Databases, tables, and other objects must not exist in the new cluster.
Note
When upgrading to PGD 5.7.0+, you don't need to have both clusters run the same PGD version.
The new cluster must be running 5.7.0+.
In that case pgd node upgrade will upgrade the PGD version to 5.7.x and upgrade the Postgres major version.
We also recommend having the old Postgres cluster up prior to running pgd node upgrade.
The CLI starts the old Postgres cluster if it's shut down.
Usage
To upgrade to a newer major version of Postgres or Postgres and PGD, you must first install the new version packages.
pgd node upgrade command-line
pgd node upgrade passes all parameters to pg_upgrade.
Therefore, you can specify any parameters supported by pg_upgrade.
Synopsis
pgd node <NODE_NAME> upgrade [OPTION] ...
Options
In addition to the options for pg_upgrade, you can pass the following parameters
to pgd node upgrade.
Required parameters
Specify these parameters either in the command line or, for all but the --database parameter, in their equivalent environment variable. They're used by pgd node upgrade.
-b, --old-bindir— Old Postgres cluster bin directory.-B, --new-bindir— New Postgres cluster bin directory.-d, --old-datadir— Old Postgres cluster data directory.-D, --new-datadir— New Postgres cluster data directory.--database— PGD database name.
Optional parameters
These parameters are optional and are used by pgd node upgrade:
-p, --old-port— Old cluster port number.-s, --socketdir— Directory to use for postmaster sockets during upgrade.--check— Specify to only perform checks and not modify clusters.
Other parameters
Any other parameter that's not one of the above is passed to pg_upgrade. pg_upgrade accepts the following parameters:
-j, --jobs— Number of simultaneous processes or threads to use.-k, --link— Use hard links instead of copying files to the new cluster.-o, --old-options