AWS Aurora:将Aurora无服务器v1数据库集群转换为预配。

huangapple go评论68阅读模式
英文:

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 &lt;cluster name&gt; --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.

huangapple
  • 本文由 发表于 2023年5月30日 11:50:12
  • 转载请务必保留本文链接:https://go.coder-hub.com/76361510.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定