IOPS (Input/Output Operations Per Second), which is the number of read and write (I/O) operations per second, is mostly used in databases and other situations to measure the performance of random access. The IOPS performance of the storage side is different from the IO of the host side. IOPS refers to the number of accesses issued by the host per second that the storage can accept. An IO of the host requires multiple accesses to the storage to be completed. For example, when the host writes a minimum data block, it also needs to go through three steps: "sending a write request, writing data, and receiving a write confirmation", that is, three storage-side accesses.
In fact, it is easy to understand. A connection may require more than one SELECT and more than one IO each time
Number of connections:
IOPS:
In fact, it is easy to understand. A connection may require more than one SELECT and more than one IO each time