Blockbridge Lab Notes · Proxmox VE

Proxmox storage,
measured.

Benchmarks, internals, and production tuning for Proxmox VE, written by the storage engineers at Blockbridge. Every number below comes from a published lab report with enough configuration detail to reproduce it.

grep -ri results technote/proxmox-*/
nvme-tcp vs iscsi, qd4 up to +50% IOPS · −33% lat
pve vs esxi, peak bw 12.8 vs 9.3 GB/s
qd1 latency, tuned up to −40%

15 articles · fio on real hardware · configs published
#overview

The storage landscape

We've supported enterprise Proxmox deployments since 2018. Our customers run demanding environments that need reliability, availability, and performance. Since 2021 we've been sharing what we can with the community. Most of it concentrates in the corner of the storage landscape where the choices are hardest.

Proxmox VE supports everything from local ZFS to Ceph. Our territory is enterprise shared block storage of the kind a SAN provides. Getting the best out of it means deeply understanding the internals. We take apart the protocol on the wire, the LVM layer Proxmox uses to share legacy SANs, and the QEMU plumbing on top. Then we test rather than guess. The sections below organize our work by theme.

A note on method: our benchmarks use Blockbridge as the storage backend unless stated otherwise. Relative results like protocol against protocol travel well to other fast storage. Absolute numbers depend on your backend, network, and CPUs.

git log --format=%as -- technote/

publishing since 2021 · latest update July 2026
technote/#perf

Performance & tuning

The factors that dominate Proxmox storage performance: protocol choice, QEMU I/O plumbing, and host tuning, with data at every step.

technote/#internals

Storage internals

How Proxmox storage actually works under the hood, and where the sharp edges are.

technote/#vmware-exit

Coming from VMware

Evaluating Proxmox as a VMware replacement: performance numbers first, then the DR feature mapping.

technote/#ops

Operations & guests

Day-2 work: reliable concurrent migration, Windows guest storage performance, and fast disposable test images.

#faq

Questions we get asked

The questions that come up again and again on the Proxmox forum. Short answers up front, measurements and working threads behind every link.

picking-storage/

What are my shared storage options for a Proxmox cluster?

Excluding hyperconverged Ceph, the primary external options are FC, iSCSI, and NVMe/TCP, with NFS as the file-storage alternative. FC and iSCSI are supported out of the box; NVMe/TCP has no native PVE storage plugin, so you can attach devices by hand and layer LVM on top, but cluster-managed provisioning takes a vendor integration. Which one fits depends on availability needs, capacity, and budget; the options get a practical airing in this small-clusters thread.

Is a two-node cluster good enough?

For a home lab, maybe; for production, no. Quorum needs a third vote: a full third node or a qdevice hosted outside the cluster it votes for. The reasoning comes up constantly, for example in this shared-storage thread.

Leaving VMware: what replaces vSAN?

Ceph is the hyperconverged analog and the only clustered storage fully integrated into PVE; the alternative is reusing or deploying external SAN storage over FC, iSCSI, or NVMe/TCP. We compare the paths in vSAN or Ceph?, and the DR side of the move in Mapping VMware DR to Proxmox VE.

san-mechanics/

Can I get thin provisioning and snapshots on a SAN?

LVM-thin is not cluster-safe, so sharing a legacy SAN means thick LVM; thin provisioning has to come from the array side. Snapshots on shared thick LVM arrived in PVE 9 as QCOW volume chains (currently a technology preview); we analyzed the mechanism in Inside PVE 9 SAN snapshot support and field variants of the question in threads like this one.

Does Proxmox VE 9 support snapshots on SAN/LVM storage?

Yes, as a technology preview: VE 9 introduced snapshot support for legacy SAN configurations using QCOW-on-LVM, with caveats on performance and allocation. How it works, how it behaves under load, and its limitations are analyzed in Inside PVE 9 SAN snapshot support.

more threads: the tutorial thread

How can multiple Proxmox nodes share one LVM volume group?

Proxmox coordinates LVM metadata changes at the cluster level rather than using a clustered filesystem. What makes that safe, and what its limits are, is explained in Understanding LVM shared storage.

How do I set up multipath iSCSI correctly?

Multipath only works when raw devices are presented to the kernel: sessions established via iscsiadm, no base option needed in the LVM storage definition, and the multipath device consumed directly. A working setup, from device discovery through enabling device-mapper multipath, is in Understanding LVM shared storage.

more threads: iSCSI network best practices

Is QCOW2 safe with cache=none?

There are metadata-integrity considerations. cache=none bypasses the host page cache but does not change how QCOW2 orders its own metadata updates. The failure modes and when RAW is the better choice are covered in QCOW2 risks with cache=none.

performance/

Which should I pick: io_uring, aio=native, iothreads?

For raw block storage, aio=native paired with an IOThread was our top pick. For thin-LVM and file-based storage, io_uring is the safer choice, because aio=native can block in those configurations. The measurements behind that rule are from PVE 7.2, so re-verify on current releases before standardizing. The full matrix is in iothreads, aio & io_uring.

more threads: the benchmark thread

Is Proxmox competitive with VMware on storage performance?

Over NVMe/TCP on identical hardware, yes: Proxmox peaked at 12.8 GB/s versus 9.3 GB/s for ESXi, about 38% higher bandwidth at peak load. The picture is protocol-dependent, though: with iSCSI, out-of-the-box results are less clear-cut and host tuning matters. The NVMe/TCP breakdown is in Proxmox vs VMware ESXi over NVMe/TCP.

more threads: PVE vs ESXi: tuning iSCSI

day-2/

Why do my concurrent VM migrations stall or fail?

Usually the migration transport: secure and insecure paths behave very differently under parallel load. Settings for moving many VMs at once reliably are in Stable concurrent VM migration.

One node in my cluster can't reach shared storage. Where do I look?

Almost always basic plumbing before anything Proxmox-specific: MTU mismatches on jumbo-frame networks, IP conflicts, interface errors, a bad cable or switch port, or an export ACL that quietly omits one node. A worked diagnosis, from checklist to root cause, is in this troubleshooting thread.

What replaces SRM and vSphere Replication in Proxmox?

There is no single drop-in equivalent: pvesr, pve-zsync, and Proxmox Backup Server each cover part of the surface. The feature-by-feature mapping, including what has no analog, is in Mapping VMware DR to Proxmox VE.

forum.proxmox.com

In the community

You'll find us answering storage questions every day on the Proxmox forum and on r/Proxmox as bbgeek17. Behind the account is a team of Blockbridge experts. Most of it has nothing to sell: a node that's lost its NAS, storage options for small clusters, multipath for whatever SAN you already own. Several of the lab notes above started as forum [TUTORIAL] threads where follow-up questions get answered inline for years. We've also reported and helped fix bugs in Veeam, iscsiadm, sg3_utils, multipath-tools, Proxmox VE, and Datacenter Manager.

tutorials/

discussions/

upstream-bugs/

elsewhere/

guide/proxmox/

Enterprise storage, engineered for Proxmox

Many of the lab notes above document the legacy path: manual multipath configuration and LVM coordination, host tuning and careful failure handling. That path works, and we help people on the forum run it. Blockbridge is storage designed for Proxmox: array-side snapshots and thin clones, automatic multipath NVMe/TCP and iSCSI, adaptive tuning and always-on encryption. The same team that answers the forum backs the product with 24×7×365 emergency support. In operation since 2010, Blockbridge is an official Proxmox partner and has supported mission-critical Proxmox deployments since 2018.

Blockbridge Native Plugin Docs → Explore the Full Solution →
head -n8 CHANGELOG
3.7.7 · ready for PVE 9.22026-05
3.7.6 · large-scale optimizations2026-03
3.7.5 · client daemon capabilities2026-03
3.7.4 · node-limited storage2026-03
3.7.3 · bug fixes2026-02
3.7.2 · Veeam v13 on PVE 8.x2025-12
3.7.1 · ready for PVE 9.12025-12
3.7.0 · adaptive iSCSI tuning2025-10

26 qualified releases since 2021 · full version history