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
gefragt vor 9 Monaten174 Aufrufe
1 Antwort
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
EXPERTE
beantwortet vor 9 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen