NVMe SSD Benchmarking: Why Storage Speed Matters for Your VPS

Published on

How to benchmark and understand NVMe SSD performance on your VPS. Covers IOPS, throughput, latency, and real-world impact on applications.

Written by Space-Node Team – Infrastructure Team – 15+ years combined experience in game server hosting, VPS infrastructure, and 24/7 streaming solutions. Read author bio →

Storage speed is the most underrated VPS performance factor. A fast CPU with slow storage bottlenecks everything.

NVMe SSD storage benchmarking

Storage Types Compared

| Type | Random Read IOPS | Sequential Read | Latency | |------|-----------------|----------------|---------| | HDD (7200 RPM) | 75-200 | 100-200 MB/s | 5-10ms | | SATA SSD | 10,000-80,000 | 500-550 MB/s | 0.1ms | | NVMe SSD | 200,000-1,000,000+ | 3,000-7,000 MB/s | 0.02ms |

NVMe SSDs are 100-1,000x faster than HDDs for random reads, which is what database queries, file lookups, and application loading depend on.

Benchmarking Your VPS

fio (Flexible I/O Tester)

sudo apt install fio

Random Read (Most Important for Applications)

fio --randrepeat=1 --ioengine=libaio --direct=1     --name=random_read --filename=testfile     --bs=4k --size=1G --numjobs=1     --iodepth=32 --rw=randread

| Result | HDD | SATA SSD | NVMe | |--------|-----|----------|------| | IOPS | 100-200 | 30,000-80,000 | 200,000-500,000 | | Bandwidth | 0.5-1 MB/s | 120-300 MB/s | 800-2,000 MB/s |

Random Write

fio --randrepeat=1 --ioengine=libaio --direct=1     --name=random_write --filename=testfile     --bs=4k --size=1G --numjobs=1     --iodepth=32 --rw=randwrite

Sequential Read/Write

fio --ioengine=libaio --direct=1     --name=seq_read --filename=testfile     --bs=1M --size=1G --numjobs=1     --iodepth=16 --rw=read

dd (Quick Test)

# Write speed
dd if=/dev/zero of=testfile bs=1M count=1024 oflag=direct

# Read speed
dd if=testfile of=/dev/null bs=1M count=1024 iflag=direct

Real-World Impact

Database Performance

| Operation | HDD | NVMe | Improvement | |-----------|-----|------|-------------| | Simple SELECT query | 5-15ms | 0.1-0.5ms | 10-30x | | Complex JOIN | 50-200ms | 2-10ms | 10-50x | | INSERT 1000 rows | 500ms-2s | 5-20ms | 25-100x | | Database backup (1GB) | 30-60s | 2-5s | 10-15x |

WordPress Performance

| Metric | HDD VPS | NVMe VPS | |--------|---------|----------| | Time to first byte | 800ms-2s | 100-300ms | | Admin page load | 3-8s | 0.5-2s | | Plugin installation | 15-30s | 2-5s | | WP-CLI search-replace | Minutes | Seconds |

File Operations

| Operation | HDD | NVMe | |-----------|-----|------| | Extract 1GB archive | 30-60s | 3-8s | | Find files (recursive) | 10-30s | 1-3s | | rsync 1GB directory | 20-40s | 3-8s | | npm install (large project) | 60-120s | 10-20s |

When Storage Speed Matters Most

| Workload | Storage Impact | |----------|---------------| | Databases (MySQL, PostgreSQL) | Critical | | CMS (WordPress, Drupal) | High | | File serving | High | | Email server | Medium | | Static website | Low | | Streaming/transcoding | Medium (sequential) | | Game servers (world saves) | Medium |

Signs of Storage Bottleneck

# Check disk I/O wait
vmstat 1 5
# Look at 'wa' column - above 10% indicates I/O wait

# Check I/O per process
sudo iotop -o

| Indicator | Healthy | Bottlenecked | |-----------|---------|-------------| | I/O wait (wa) | < 5% | > 20% | | Average queue | < 2 | > 10 | | Disk latency | < 1ms | > 10ms | | Read throughput | Near max | Fluctuating |

Space-Node's VPS hosting uses NVMe SSD storage across all plans. No HDD tiers, no spinning disks. Every plan gets the full NVMe speed advantage.

Space-Node Team

About the Author

Space-Node Team – Infrastructure Team – Experts in game server hosting, VPS infrastructure, and 24/7 streaming solutions with 15+ years combined experience.

Since 2023
500+ servers hosted
4.8/5 avg rating

Our team specializes in Minecraft, FiveM, Rust, and 24/7 streaming infrastructure, operating enterprise-grade AMD Ryzen 9 hardware in Netherlands datacenters. We maintain GDPR compliance and ISO 27001-aligned security standards.

View Space-Node's full team bio and credentials →

Launch Your VPS Today

Get started with professional VPS hosting powered by enterprise hardware. Instant deployment and 24/7 support included.

NVMe SSD Benchmarking: Why Storage Speed Matters for Your VPS