英文:
AWS Aurora: converting an Aurora Serverless v1 DB cluster to provisioned
问题
我正在尝试将AWS Aurora数据库集群(Postgres版本)从Serverless v1转换为预配置模式。该集群最近已成功升级到版本13.9,从11.16。
我正在按照这里的说明进行操作:
https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.modifying.html#aurora-serverless.modifying.convert
...我的AWS CLI语句如下,与文档相符:
aws rds modify-db-cluster --db-cluster-identifier <cluster name> --engine-mode provisioned --allow-engine-mode-change --db-cluster-instance-class db.r5.xlarge
...但我收到以下错误,表明命令的选项似乎不正确:
未知选项:--engine-mode、--allow-engine-mode-change、provisioned
提前感谢您的任何协助。
英文:
I'm trying to convert an AWS Aurora database cluster (Postgres version) from Serverless v1 to provisioned. The cluster has been recently successfully upgraded from version 11.16 to 13.9.
I'm following the instructions here:
https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.modifying.html#aurora-serverless.modifying.convert
... and my AWS CLI statement looks like this, which matches the documentation:
aws rds modify-db-cluster --db-cluster-identifier <cluster name> --engine-mode provisioned --allow-engine-mode-change --db-cluster-instance-class db.r5.xlarge
... but I'm getting the following error, which suggests the options for the command are incorrect somehow:
Unknown options: --engine-mode, --allow-engine-mode-change, provisioned
Thanks in advance for any assistance.
答案1
得分: 0
已更新我的AWS CLI到版本2.11.23,并成功修改了集群。
英文:
Updated my AWS CLI to version 2.11.23 and was able to modify the cluster.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论