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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
云风的 BLOG
云风的 BLOG
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 司徒正美
博客园 - 聂微东
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
宝玉的分享
宝玉的分享
量子位
V
Visual Studio Blog
罗磊的独立博客
Vercel News
Vercel News
B
Blog
J
Java Code Geeks
S
SegmentFault 最新的问题
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
P
Proofpoint News Feed
GbyAI
GbyAI
G
Google Developers Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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.