Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I learn more about AWS's RDS Aurora PostgreSQL 9.6.19 upgrade failure?

I'm trying to upgrade an RDS database cluster engine from Aurora PostgreSQL 9.6.19 before its end of life, I made copy and tried to upgrade to 9.6.21 and 10.16 but everytime the same problem happens:

Database cluster is in a state that cannot be upgraded: Postgres cluster is in a state where pg_upgrade can not be completed successfully.

The status of the database is Available so maybe it refers to something else but I don't know what and how to fix it, I've tried looking for answers to no avail.

Has anyone fixed this?

like image 651
Florencia Yáñez Gutiérrez Avatar asked Nov 21 '25 12:11

Florencia Yáñez Gutiérrez


1 Answers

The pg_upgrade_internal log file will usually contain details on any failures/errors.

You can take a look on these logs using the command line:

aws rds describe-db-log-files --db-instance-identifier my-db-instance

Or via console, or RDS API.

For more information take a look on these links: Upgrading the PostgreSQL DB engine for Amazon RDS, Viewing and listing database log files

like image 143
valdeci Avatar answered Nov 23 '25 01:11

valdeci