Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS Aurora Serverless unexplained write IOPS

I've created an RDS Aurora Serverless cluster with a maximum ACU of 1 and have noticed a high number of Volume Write IOPS, despite not creating a database or ever connecting to the cluster:

High Volume Write IOPS

I've looked through the general_log and noticed this statement, which is executed approximately every 2 seconds:

INSERT INTO mysql.rds_heartbeat2(id, value) values (1,1607638395773) ON DUPLICATE KEY UPDATE value = 1607638395773 ;

This would explain some of the Write IOPS but nothing close to the 550 per minute that the graph is showing.

Can someone explain where these IOPS are coming from?

like image 780
iCode101 Avatar asked Oct 30 '25 14:10

iCode101


1 Answers

The VolumeWriteIOPs and VolumeReadIOPs are pretty misleading due to their name. Ps does not stand for "per second". The metric is the sum of IO operations in a five-minute interval. You can calculate the per-second value by dividing it by 300. That leads to around 2 IO per second in your case.

like image 186
gileri Avatar answered Nov 01 '25 13:11

gileri



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!