How to caculate IOPS to MBpers

来源:互联网 发布:windows asp.net 编辑:程序博客网 时间:2024/05/17 21:52
IOPS = (MBps Throughput / KB per IO) * 1024

or

MBps = (IOPS * KB per IO) / 1024

For Example:

To convert the 76.2MB/s to IOPS, we perform the following calculation:
IOPS = (76.2 / 4K bs) * 1024
IOPS = 19.1 * 1024
IOPS = 19,558.4

To see what throughput we need to achieve the actual 20,000 IOPs:

MBps = (20,000 * 4K bs) / 1024
MBps = 80,000 / 1024
MBps = 78.125MB/s