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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
D
DataBreaches.Net
C
Check Point Blog
雷峰网
雷峰网
小众软件
小众软件
GbyAI
GbyAI
美团技术团队
P
Proofpoint News Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
Apple Machine Learning Research
Apple Machine Learning Research
Y
Y Combinator Blog
Jina AI
Jina AI
爱范儿
爱范儿
Last Week in AI
Last Week in AI
MongoDB | Blog
MongoDB | Blog
I
InfoQ
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美

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 Use Rook-Ceph with Velero for Kubernetes Backup
How to Verify Backup Integrity from Ceph Snapshots
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

Taking snapshots is only half of a backup strategy. Verifying that those snapshots are complete and can be successfully restored is what makes a backup actually useful. Ceph provides tools to validate snapshot integrity at multiple levels.

Creating a Snapshot for Testing

Create a pool snapshot as a baseline:

rados -p mypool mksnap mysnap
rados -p mypool lssnap

For RBD volumes (block storage):

rbd snap create mypool/myimage@mysnap
rbd snap ls mypool/myimage

For CephFS:

mkdir /mnt/cephfs/.snap/mysnap
ls /mnt/cephfs/.snap/

Computing Checksums Before Backup

Before exporting, record checksums of critical objects:

#!/bin/bash
POOL="mypool"
SNAP="mysnap"
CHECKSUMS="/tmp/checksums-$(date +%Y%m%d).txt"

while IFS= read -r obj; do
  TMP_FILE="$(mktemp)"
  rados -p "$POOL" -s "$SNAP" get "$obj" "$TMP_FILE"
  echo "$(md5sum "$TMP_FILE" | awk '{print $1}') $obj" >> "$CHECKSUMS"
  rm -f "$TMP_FILE"
done < <(rados -p "$POOL" ls)
echo "Checksums written to $CHECKSUMS"

Exporting an RBD Snapshot

Export a snapshot to a file:

rbd export mypool/myimage@mysnap /backup/myimage-snap.img

Compute checksum of the export:

sha256sum /backup/myimage-snap.img > /backup/myimage-snap.img.sha256

Verifying the Export Integrity

After the export completes:

sha256sum -c /backup/myimage-snap.img.sha256

Expected output:

/backup/myimage-snap.img: OK

Test Restoration to Verify Completeness

Import the exported image to a test pool:

rbd import /backup/myimage-snap.img testpool/restored-image

# Map the restored image
rbd device map testpool/restored-image

# Verify the filesystem before mounting it
fsck -n /dev/rbd0

# Mount and verify filesystem contents
mount /dev/rbd0 /mnt/test-restore
ls -la /mnt/test-restore

Verifying CephFS Snapshot Consistency

Access the snapshot through the .snap directory and diff it against the live directory:

diff -r /mnt/cephfs/data/.snap/mysnap /mnt/cephfs/data

Or use rsync in dry-run mode:

rsync -anv /mnt/cephfs/data/.snap/mysnap/ /mnt/verify/

Automated Verification CronJob

apiVersion: batch/v1
kind: CronJob
metadata:
  name: verify-ceph-backup
  namespace: rook-ceph
spec:
  schedule: "0 4 * * *"
  jobTemplate:
    spec:
      template:
        spec:
          containers:
          - name: verify
            image: ceph/ceph:latest
            command:
            - /bin/bash
            - -c
            - |
              rbd export testpool/myimage@mysnap /tmp/verify.img
              sha256sum /tmp/verify.img
          restartPolicy: OnFailure

Summary

Verifying backup integrity from Ceph snapshots requires checksumming objects before and after export, performing test restorations, and running filesystem checks on restored volumes. Automating this process via Kubernetes CronJobs ensures ongoing confidence that your backups are usable, not just present.