正在尝试将群集快照还原为代码构建管道的一部分,以定期将prod db复制到登台。在使用aws cli命令恢复集群时遇到一个问题,并抛出下面一个奇怪的错误。
下面是我正在尝试运行的命令。它是从这个https://aws.amazon.com/blogs/devops/enhancing-automated-database-continuous-integration-with-aws-codebuild-and-amazon-rds-database-snapshot/中提取的
aws rds restore-db-cluster-from-snapshot \
--snapshot-identifier arn:aws:rds:region-ID:account-ID:cluster-snapshot:db-snapshot-identifier \
--db-cluster-identifier myidentifiernameforrestore \
--engine aurora执行该命令时出现以下错误:
An error occurred (InternalFailure) when calling the RestoreDBClusterFromSnapshot operation (reached max retries: 4): An internal error has occurred. Please try your query again at a later time.有什么想法吗?
发布于 2020-10-04 20:32:28
问题出在命令--engine aurora的最后一部分
将其更改为--engine aurora-mysql,然后工作并部署群集。
谢谢你的提示@Marcin
https://stackoverflow.com/questions/64194052
复制相似问题