如何详细了解AWS的RDS Aurora PostgreSQL 9.6.19升级失败?
How can I learn more about AWS's RDS Aurora PostgreSQL 9.6.19 upgrade failure?
我正在尝试从 Aurora PostgreSQL 9.6.19 升级 RDS 数据库集群引擎,在它的生命周期结束之前,我制作了副本并尝试升级到 9.6.21 和 10.16,但每次都会发生同样的问题:
Database cluster is in a state that cannot be upgraded: Postgres cluster is in a state where pg_upgrade can not be completed successfully.
数据库的状态是可用的,所以它可能指的是其他东西,但我不知道是什么以及如何修复它,我已经尝试寻找无济于事的答案。
有人解决这个问题吗?
pg_upgrade_internal
日志文件通常包含有关任何 failures/errors 的详细信息。
您可以使用命令行查看这些日志:
aws rds describe-db-log-files --db-instance-identifier my-db-instance
或通过控制台或 RDS API。
有关更多信息,请查看这些链接:Upgrading the PostgreSQL DB engine for Amazon RDS, Viewing and listing database log files
我正在尝试从 Aurora PostgreSQL 9.6.19 升级 RDS 数据库集群引擎,在它的生命周期结束之前,我制作了副本并尝试升级到 9.6.21 和 10.16,但每次都会发生同样的问题:
Database cluster is in a state that cannot be upgraded: Postgres cluster is in a state where pg_upgrade can not be completed successfully.
数据库的状态是可用的,所以它可能指的是其他东西,但我不知道是什么以及如何修复它,我已经尝试寻找无济于事的答案。
有人解决这个问题吗?
pg_upgrade_internal
日志文件通常包含有关任何 failures/errors 的详细信息。
您可以使用命令行查看这些日志:
aws rds describe-db-log-files --db-instance-identifier my-db-instance
或通过控制台或 RDS API。
有关更多信息,请查看这些链接:Upgrading the PostgreSQL DB engine for Amazon RDS, Viewing and listing database log files