惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

雷峰网
雷峰网
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
L
LangChain Blog
云风的 BLOG
云风的 BLOG
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
I
InfoQ
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
量子位
The GitHub Blog
The GitHub Blog
博客园 - 【当耐特】

OneUptime Blog

How to Monitor Azure App Services (PaaS) with OpenTelemetry Grafana Stack vs OneUptime: DIY Observability or Unified Platform? Your AI Workloads Are About to Blow Up Your Observability Bill The Great Observability Consolidation Is Here How to Write Custom Object Classes for Ceph How to Write Custom Ceph Manager Modules How to Write a ceph.conf Configuration File How to Use Rook-Ceph with OpenShift How to Use Rook-Ceph with Longhorn for Comparison How to Configure Volume Snapshot Class for RBD in Rook How to Configure VolumeReplicationClass Scheduling Intervals in Rook How to Set Up Volume Replication with Rook-Ceph How to Create Volume Group Snapshots with Rook CSI How to Visualize Ceph Network Performance in Grafana How to Enable Virtual Host-Style Bucket Access in Rook How to View Runtime Configuration via Admin Socket How to View Quota Settings and Update Stats in Ceph RGW How to View PG Scaling Recommendations with autoscale-status How to View PG Distribution via Admin Socket How to View Performance Metrics in the Ceph Dashboard How to View OSD Performance Counters in Ceph How to View Connection Status via Admin Socket How to View Ceph Cluster Summary Dashboard via CLI How to Version Control Rook-Ceph Configuration How to Version Control Ceph Infrastructure with Terraform How to Verify Kubernetes Node Requirements for Rook-Ceph Deployment How to Verify Health Before and After Rook Upgrades How to Verify Data Integrity with Deep Scrubbing How to Verify Complete Rook-Ceph Cleanup How to Verify Backup Integrity from Ceph Snapshots
How to Use RBD with QEMU
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

Why Use RBD with QEMU

Using RBD as the backing store for QEMU virtual machines provides several advantages over local disk or NFS-based storage:

  • Live migration of VMs without shared storage setup
  • Copy-on-write snapshots for fast VM cloning
  • Thin provisioning of VM disk images
  • High availability through Ceph's replication

QEMU has built-in support for RBD via librbd, meaning no kernel module is required on the hypervisor.

Step 1 - Extract Ceph Credentials

Get the Ceph monitor addresses and client key from Rook:

kubectl get configmap rook-ceph-mon-endpoints -n rook-ceph -o yaml

kubectl get secret rook-ceph-admin-keyring -n rook-ceph \
  -o jsonpath='{.data.keyring}' | base64 -d

Store the keyring at /etc/ceph/ceph.client.admin.keyring on the hypervisor node.

Step 2 - Create an RBD Image for the VM

Create a VM disk image in the RBD pool:

kubectl exec -it deploy/rook-ceph-tools -n rook-ceph -- \
  rbd create replicapool/vm-disk-01 --size 20G

Step 3 - Launch QEMU with RBD Disk

Run a VM using the RBD image as its primary disk:

qemu-system-x86_64 \
  -enable-kvm \
  -m 2048 \
  -drive format=raw,file=rbd:replicapool/vm-disk-01:conf=/etc/ceph/ceph.conf:id=admin:keyring=/etc/ceph/ceph.client.admin.keyring \
  -net nic \
  -net user

Step 4 - Use QEMU Block Driver with Cache Mode

Configure write-back caching for better VM write performance:

qemu-system-x86_64 \
  -enable-kvm \
  -m 4096 \
  -drive if=virtio,format=raw,cache=writeback,\
file=rbd:replicapool/vm-disk-01:conf=/etc/ceph/ceph.conf:id=admin:keyring=/etc/ceph/ceph.client.admin.keyring \
  -smp 4

For latency-sensitive VMs, use cache=none with the virtio-blk driver:

-drive if=virtio,format=raw,cache=none,aio=native,...

Step 5 - Snapshot a Running VM's Disk

Freeze the filesystem inside the VM, then take a snapshot:

# Inside the VM - freeze the filesystem to ensure consistency
sync
fsfreeze --freeze /

# On the hypervisor host - take the snapshot
kubectl exec -it deploy/rook-ceph-tools -n rook-ceph -- \
  rbd snap create replicapool/vm-disk-01@snapshot-pre-upgrade

# Inside the VM - unfreeze the filesystem after the snapshot
fsfreeze --unfreeze /

Step 6 - Clone a VM Disk for Fast Provisioning

Create a clone from a base image snapshot:

kubectl exec -it deploy/rook-ceph-tools -n rook-ceph -- \
  rbd snap protect replicapool/base-image@golden

kubectl exec -it deploy/rook-ceph-tools -n rook-ceph -- \
  rbd clone replicapool/base-image@golden replicapool/new-vm-disk

The clone uses COW, so it only stores differences from the parent.

Step 7 - Verify QEMU RBD Connection

Check that QEMU can connect to Ceph by inspecting the VM's block device:

qemu-img info rbd:replicapool/vm-disk-01
image: rbd:replicapool/vm-disk-01
file format: raw
virtual size: 20 GiB (21474836480 bytes)
disk size: 2.1 GiB

Summary

Using RBD with QEMU in Rook-Ceph environments enables VM disk storage to be backed by a distributed, replicated Ceph cluster. Pass credentials via conf= and keyring= in the RBD driver string, choose an appropriate cache mode for your workload, and use rbd clone for fast VM provisioning from golden images. This setup enables live migration and cluster-wide VM disk availability.