Charge per hour of RDS MySQL

0

Hi,

I have received an invoice with a huge MySQL RDS hourly charge, and I don't know what it is due to. Do I need to close transactions somehow to stop the timer? What could I be doing wrong?

$ 1.072 per RDS db.r6g.2xlarge Single-AZ instance, 66 hours in 3 days in April...

Thanks in advance.

Jaime I.

2 Answers
0

You should only get those charges if you have an active RDS database instance. Have a look that Region those charges were for, and look in the RDS console under that region.

EXPERT
answered a year ago
  • Thank you skinsman, yes I have an active database instance, and I am billed from Stcokholm which is correct. What surprises me is the amount of hours charged. I wonder if it is mandatory to explicitly close any kind of connection or thread in the javascript code, jusgt in case I am leaving these processes open. I can review the process list often, but that is not a solution... To connect, I use Jdbc.getConnection().createStatement().executeQuery

    Thanks again

  • RDS pricing is bases on the number of hours your instance is running, it's nothing to do with connections made by clients. As soon as you create an instance you're charged the hourly rate for every hour it's running, so 24 hours per day even if no clients ever connect. You can stop a database temporarily (then you're charged only for storage) for up to a week but you have to start it again to use it.

    If you can tolerate the cols starts and the MySQL version is suitable, you can use Aurora Serverless v1 which can scale down to 0 when not in use.

0

Thank you very much, skinsman. Obviously I purchased the wrong product. What do you mean with 'cols starts' ? Is it 'cold starts'? I will read about it. BR

answered a year 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