IOPS versus Throughput

前端 未结 4 1120
孤城傲影
孤城傲影 2021-01-30 15:38
  1. What is the key difference between IOPS and Throughput in large data storage?
  2. Does file size have an effect on IOPS? Why?
4条回答
  •  北荒
    北荒 (楼主)
    2021-01-30 16:19

    IOPS measures the number of read and write operations per second, while throughput measures the number of bits read or written per second.

    Although they measure different things, they generally follow each other as IO operations have about the same size.

    If you have large files, you simply need more IO operations to read the entire file. The file size has no effect on the IOPS as it measures the number of clusters read or written, not the number of files.

    If you have small files, there will be more overhead, so while the IOPS and throughput look good, you may experience a lower actual performance.

提交回复
热议问题