I browsed the Amazon RDS pricing site today and now do want to know how they actually calculate the I/O rate? What does "$0.10 per 1 million requests" really mean?

Can anyone give some simple examples how many I/Os a simple query from EC2 to a MySQL on RDS produces?

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

In general it is a price for EBS storage service. Amazon claims something like this for EBS (section Projecting Costs):

As an example, a medium sized website database might be 100 GB in size and expect to average 100 I/Os per second over the course of a month. This would translate to $10 per month in storage costs (100 GB x $0.10/month), and approximately $26 per month in request costs (~2.6 million seconds/month x 100 I/O per second * $0.10 per million I/O).

If you have a running application on Linux, here is an article how to measure cost for EBS:

link|improve this answer
My question may not be clear enough: What is a single I/O? – eisberg Aug 3 '11 at 14:53
I/O operation is read or write operation on disc, so the instruction sent by system to block device (hard drive). – okrasz Aug 3 '11 at 15:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.