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
asked 9 months ago161 views
1 Answer
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
EXPERT
answered 9 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions