--- stage: Data Stores group: Database info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments --- # Upgrading external PostgreSQL databases When upgrading your PostgreSQL database engine, it is important to follow all steps recommended by the PostgreSQL community and your cloud provider. Two kinds of upgrades exist for PostgreSQL databases: - **Minor version upgrades**: These include only bug and security fixes. They are always backward-compatible with your existing application database model. The minor version upgrade process consists of replacing the PostgreSQL binaries and restarting the database service. The data directory remains unchanged. - **Major version upgrades**: These change the internal storage format and the database catalog. As a result, object statistics used by the query optimizer [are not transferred to the new version](https://www.postgresql.org/docs/current/pgupgrade.html) and must be rebuilt with `ANALYZE`. Not following the documented major version upgrade process often results in poor database performance and high CPU use on the database server. All major cloud providers support in-place major version upgrades of database instances, using the `pg_upgrade` utility. However you must follow the pre- and post- upgrade steps to reduce the risk of performance degradation or database disruption. Read carefully the major version upgrade steps of your external database platform: - [Amazon RDS for PostgreSQL](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.PostgreSQL.html#USER_UpgradeDBInstance.PostgreSQL.MajorVersion.Process) - [Azure Database for PostgreSQL Flexible Server](https://learn.microsoft.com/en-us/azure/postgresql/flexible-server/concepts-major-version-upgrade) - [Google Cloud SQL for PostgreSQL](https://cloud.google.com/sql/docs/postgres/upgrade-major-db-version-inplace) - [PostgreSQL community `pg_upgrade`](https://www.postgresql.org/docs/current/pgupgrade.html) ## Always `ANALYZE` your database after a major version upgrade It is mandatory to run the [`ANALYZE` operation](https://www.postgresql.org/docs/current/sql-analyze.html) to refresh the `pg_statistic` table after a major version upgrade, because optimizer statistics [are not transferred by `pg_upgrade`](https://www.postgresql.org/docs/current/pgupgrade.html). This should be done for all databases on the upgraded PostgreSQL service/instance/cluster. To speed up the `ANALYZE` operation, use the [`vacuumdb` utility](https://www.postgresql.org/docs/current/app-vacuumdb.html), with `--analyze-only --jobs=njobs` to execute the `ANALYZE` command in parallel by running `njobs` commands simultaneously.