存储虚拟化
SPDK
HDD 时代速度瓶颈在于硬件而不是软件,有了 NVMe 之后,硬件能力提升,因此软件逐渐成为瓶颈。
SPDK 是 Intel 开发的。
SPDK 和 DPDK 的后缀 PDK 不是一个意思:
- Data Plane Development Kit
- Storage Performance Development Kit
不过和 DPDK 一样,也是把处理放到用户态上。思想:
- Moving all of the necessary drivers into userspace, which avoids syscalls and enables zero-copy access from the application.
🗞️ Recent Posts