Posted On June 12, 2021

Converting from IOPS to MB/s

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Converting from IOPS to MB/s
Conversion factors: from IOPS to MiB/s

Throughput is a function of Input/Output per second (IOPS) divided by (block size in bytes / 1024 bytes) x 64. Hence, larger block sizes will yield higher sustained data transfer.

clusterSize => multiplier
512 => 2048
1024 => 1024
4KiB => 256
8Kib => 128
16KiB => 64
23KiB => 32

Formulas
  • MBps = IOPS / (1048576/clusterSize) = (IOPS * 16) / clusterSize
  • IOPS = (1048576/clusterSize) * MBps = (MBps * clusterSize) / 16

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Fix NetPlWiz and control userpasswords2 Grey-out Options

Problem: netplwiz has a grayed out 'Users must enter a user name and password to…

Linux: How to Create RSA Keys and SSH Agent

Step 1: Generate RSA Key # Command to generate rsa key for Ubuntu Linuxssh-keygen -t…

Problem Solving Exercise: Auto Manufacturing Case

Sample Answer 1. Produce a problem statement:We are investigating the root cause of production delays…