04-27-2021, 04:59 AM
I'm interested in the disk I/O performance of the Post4VPS VPSs with NVMe SSD-backed storage (ie VPS-7, VPS-13, VPS-14.)
Thus can you please run the following commands on your VPS and share the output with us:
Finally, I'm also interested in the results of the fio Disk Speed Tests (Mixed R/W 50/50), which is included in the "Yet-Another-Bench-Script" available on github:
https://github.com/masonr/yet-another-bench-script
To avoid running all the tests, you can restrict it to the disk speed with the ig flags:
Thanks!
Thus can you please run the following commands on your VPS and share the output with us:
Code: (Select All)
# Your block device details
lsblk --output "NAME,KNAME,MODEL,HCTL,SIZE,VENDOR,SUBSYSTEMS"
# Investigating the used kernel drivers (virtio vs nvme)
lsmod | grep virt
lsmod | grep nvm
# Disk Seek Rate:
ioping -R /dev/vda (or /dev/sda)
# Disk Sequential Speed:
ioping -RL /dev/vda (or /dev/sda)
Finally, I'm also interested in the results of the fio Disk Speed Tests (Mixed R/W 50/50), which is included in the "Yet-Another-Bench-Script" available on github:
https://github.com/masonr/yet-another-bench-script
To avoid running all the tests, you can restrict it to the disk speed with the ig flags:
Code: (Select All)
./yabs.sh -ig
Thanks!