- Newest
- Most votes
- Most comments
It looks like you received a notification about the need to upgrade your Amazon Aurora PostgreSQL clusters running on versions 11.12, 12.7, and 13.3 by March 15, 2023. Since this is a critical update, here’s what you can do to address the action required:
Steps to Upgrade Amazon Aurora PostgreSQL: Check Current Aurora PostgreSQL Versions:
AWS Management Console: Go to the RDS section, navigate to Databases, and select your Aurora PostgreSQL clusters. Look under the "DB Version" field to identify the minor versions.
AWS CLI: Use the describe-db-clusters command to get the cluster version: aws rds describe-db-clusters --query 'DBClusters[*].{DBClusterIdentifier:DBClusterIdentifier,EngineVersion:EngineVersion}' Direct Database Query: You can also query the version directly from the PostgreSQL database: SELECT * FROM aurora_version(); Upgrade Aurora PostgreSQL Version:
Recommended Minimum Versions:
For 11.12, upgrade to 11.17 or higher. For 12.7, upgrade to 12.12 or higher. For 13.3, upgrade to 13.8 or higher.
You can perform the upgrade: In the AWS Management Console: Go to the RDS section. Select your cluster and click Modify. Choose the New DB Engine Version from the dropdown (make sure to select the recommended version). Apply the changes immediately or during the next maintenance window.
Using AWS CLI: Use the modify-db-cluster command to upgrade the version: aws rds modify-db-cluster --db-cluster-identifier <your-cluster-id> --engine-version <new-version> --apply-immediately Take a Snapshot Before Upgrading: Before proceeding with the upgrade, it's recommended to take a manual snapshot of your Aurora PostgreSQL cluster to ensure you can restore it if needed:
AWS Management Console: In the Databases section, select the cluster and click Actions > Take snapshot.
AWS CLI: aws rds create-db-cluster-snapshot --db-cluster-identifier <your-cluster-id> --db-cluster-snapshot-identifier <snapshot-name> Monitor Upgrade Process: Once the upgrade starts, monitor the process to check for any issues during the upgrade. The upgrade process may cause a brief period of downtime, but it should be minimal.
Post-Upgrade Actions:
Verify Version: After the upgrade completes, verify that the correct version has been applied.
Monitor Application: Ensure that your application continues to work as expected with the new version. Check for any compatibility issues or regressions.
regards, M Zubair https://zeonedge.com