RDS spiking while updating data

0

So I am using RDS and there is not much load in it except when we update data , I think it cant handle that much data at once so is there an option to handle that load without paying more for larger server ?

Amr
已提问 9 个月前174 查看次数
1 回答
0

Hello.
This is something that can be addressed for databases in general rather than RDS, but performance can be improved by writing multiple rows at once using BULK INSERT, etc.
BULK INSERT can be executed in a single transaction, which can be faster than executing multiple regular SQL statements.
It also reduces the amount of code written, which leads to a reduction in the burden of data preparation.

Other write and read performance may be improved by changing the RDS storage type to io2, etc.
https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html

profile picture
专家
已回答 9 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则