Disk IOPS Describes the number of disk I / O operations per second, regardless of block size.
The disk bandwidth describes how much data can be transferred per second, so the block size plays a huge role in calculating the bandwidth required by the application.
Let's take an example of the 3000 IOPS and SQL database engine, the block size in terms of the db core is called the page size , and for SQL Server it is 8 KB. If you want to calculate the actual throughput, if IOPS is defined, you will get the following formula:
throughput = [IOPS] * [block size] = 3000 * 8 = 24 000 KB/s = 24 MB/s
Andriy ivaneyko
source share