Unable to upgrade RDS from gp2 to gp3 in management console

0

See attached image. I am going to configure in the management console and set the storage type to gp3, that's it. It is automatically choosing the minimum/default values of 3000 IOPS and 125mbps for me. I have tried changing the disk size as well.

You can't specify IOPS or storage throughput for engine postgres and a storage size less than 400.

Enter image description here

已提問 1 年前檢視次數 2031 次
2 個答案
2
已接受的答案

If the console does not give the expected results, you can always use the CLI.

This worked for me:

aws rds modify-db-instance \
    --db-instance-identifier your-instance-name \
    --storage-type gp3 \
    --apply-immediately
AWS
已回答 1 年前
0

In this case, you can either increase the storage size of your RDS instance to meet the minimum requirement of 400 GB or consider changing the database engine to one that allows you to specify IOPS and storage throughput for gp3 storage.

If you decide to increase the storage size of your RDS instance, you can do so by modifying the RDS instance in the AWS Management Console and selecting a larger storage size. Keep in mind that increasing the storage size may also increase the cost of your RDS instance.

Alternatively, you could consider changing the database engine to one that supports gp3 storage and allows you to specify IOPS and storage throughput. For example, the MySQL and Oracle database engines support gp3 storage and allow you to configure IOPS and storage throughput. However, keep in mind that changing the database engine may require you to modify your application code and database schema to ensure compatibility with the new engine.

hash
已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南