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

PowerShell: Audit Failed Logins of A User

$username='rambo' function auditLockouts($userName,$domainController,$refreshMinutes=1){ function getLockouts($domainControler){ # Requirement: # Domain Controllers Audit Group Policy has been…

Remote Desktop: change default listening port

1. Start Registry Editor. 2. Locate and then click the following registry subkey: HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TerminalServer\WinStations\RDP-Tcp\PortNumber 3.…

Script to Disable User Accounts

accountsToDisable.txtorangeapplepeartermed user REM disableAccounts.batREM read accountsToDisable.txt and convert names into proper DN entries. Save result…