通过只读副本创建Aurora PG。这部分在控制台中是没有的(虽然文档中给了控制台的操作步骤)。只能通过 AWS CLI 创建。
中国 北京区的Aurora PG ,版本只有 10.7 和 11.6,类型只支持 db.t3.medium 和 db.r5,宁夏区 版本 9.6.(8,9,11,16)/10.11/11.6,类型只支持 db.r4.
在文档中,迁移方式还有针对 9.6.1 和 9.6.3 的快照进行迁移。但是目前都不行了。
还可以使用 DMS 或 Amazon S3 进行迁移。
===
以下为 RDS PG 通过只读副本迁移至 Aurora PG 的操作命令。
- 创建 只读副本的 Aurora cluster。
aws rds create-db-instance --db-cluster-identifier chen-pg11-aurora --engine aurora-postgresql --replication-source-identifier arn:aws-cn:rds:cn-northwest-1:000000000000:db:chen-pg11
- 在 Aurora cluster 中创建实例。
aws rds create-db-instance --db-cluster-identifier chen-pg11-0603-aurora --db-instance-identifier chen-pg11-0603-aurora --db-instance-class db.r4.large --engine aurora-postgresql
- 最后将 Aurora Cluster 提升为主实例。这一步可以通过控制台,也可以通过CLI。
aws rds promote-read-replica-db-cluster --db-cluster-identifier chen-pg11-aurora
迁移完成。