是否可以停止 AWS Postgres Aurora 全球数据库?
Is it possible to stop an AWS Postgres Aurora Global Database?
我想 运行 在我的暂存环境中使用 AWS Postgres Aurora 全局数据库,但我想在夜间和周末停止它。好像这不太可能?
我在欧盟有一个主集群,在美国有一个只读副本集群。如果我尝试停止主集群,我会得到:
Stop-db-cluster is not supported for clusters with read replicas
(Service: AmazonRDS; Status Code: 400; Error Code: InvalidDBClusterStateFault; Request ID: XXXXXXXX)
停止RDS的唯一方法是摧毁整个集群吗?!
Aurora Global Database 不支持停止和停止全局集群。来自 docs:
The following features aren't supported for Aurora global databases:
Stopping and starting the DB clusters within the global database.
看来,正如您所指出的,唯一的方法是停止删除它并稍后从快照重新创建。
我想 运行 在我的暂存环境中使用 AWS Postgres Aurora 全局数据库,但我想在夜间和周末停止它。好像这不太可能?
我在欧盟有一个主集群,在美国有一个只读副本集群。如果我尝试停止主集群,我会得到:
Stop-db-cluster is not supported for clusters with read replicas
(Service: AmazonRDS; Status Code: 400; Error Code: InvalidDBClusterStateFault; Request ID: XXXXXXXX)
停止RDS的唯一方法是摧毁整个集群吗?!
Aurora Global Database 不支持停止和停止全局集群。来自 docs:
The following features aren't supported for Aurora global databases: Stopping and starting the DB clusters within the global database.
看来,正如您所指出的,唯一的方法是停止删除它并稍后从快照重新创建。