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

推荐订阅源

小众软件
小众软件
C
Check Point Blog
Vercel News
Vercel News
Y
Y Combinator Blog
G
Google Developers Blog
P
Proofpoint News Feed
WordPress大学
WordPress大学
MongoDB | Blog
MongoDB | Blog
博客园 - 司徒正美
Last Week in AI
Last Week in AI
博客园 - 【当耐特】
N
Netflix TechBlog - Medium
L
LangChain Blog
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
博客园_首页
B
Blog RSS Feed
The Cloudflare Blog
MyScale Blog
MyScale Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Security Blog
Microsoft Security 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 Complete Rook-Ceph Cleanup How to Verify Backup Integrity from Ceph Snapshots How to Use Rook-Ceph with Velero for Kubernetes Backup
How to Verify Data Integrity with Deep Scrubbing
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

Scrubbing is Ceph's mechanism for proactively detecting data corruption and inconsistencies across placement groups. Deep scrubbing reads and verifies the actual bytes on disk, making it the most thorough form of data validation available.

Light Scrubbing vs Deep Scrubbing

  • Light scrubbing - compares object metadata (size, attributes) across replicas without reading data
  • Deep scrubbing - reads all object data from disk and verifies checksums against stored values

Deep scrubbing catches silent corruption that light scrubbing would miss, such as bit rot in the underlying storage medium.

Default Scrub Schedule

By default, Ceph performs:

  • Light scrub: every 24 hours
  • Deep scrub: every 7 days

Check when each placement group was last scrubbed:

ceph health detail | grep -E "PG_NOT_SCRUBBED|PG_NOT_DEEP_SCRUBBED"

Or inspect PG details in JSON:

ceph pg dump pgs --format=json-pretty

Triggering Manual Deep Scrub

Force a deep scrub on a specific PG:

ceph pg deep-scrub 2.1a

Force deep scrub on all PGs in a pool:

for pg in $(ceph pg ls-by-pool mypool | awk '/^[0-9]+\./ {print $1}'); do
  ceph pg deep-scrub $pg
done

Configuring Scrub Settings

# Minimum interval between scrubs (seconds)
ceph config set osd osd_scrub_min_interval 86400

# Maximum interval before forcing a scrub (seconds)
ceph config set osd osd_scrub_max_interval 604800

# Deep scrub interval
ceph config set osd osd_deep_scrub_interval 604800

# Limit scrub load impact
ceph config set osd osd_scrub_load_threshold 0.5
ceph config set osd osd_scrub_chunk_max 25

Monitoring Scrub Status

Watch for inconsistent PGs after scrubs complete:

ceph health detail | grep -E "inconsistent|scrub"

View recent scrub errors in OSD logs:

kubectl -n rook-ceph logs -l app=rook-ceph-osd | grep -i "deep-scrub\|scrub error"

Prioritizing Scrubs on Specific Pools

For critical data, shorten the pool-specific scrub intervals:

ceph osd pool set critical-pool scrub_min_interval 43200
ceph osd pool set critical-pool deep_scrub_interval 259200

Using Rook CephBlockPool to Set Scrub Parameters

apiVersion: ceph.rook.io/v1
kind: CephBlockPool
metadata:
  name: mypool
  namespace: rook-ceph
spec:
  replicated:
    size: 3
  parameters:
    scrub_min_interval: "86400"
    deep_scrub_interval: "604800"

Repairing Found Inconsistencies

When deep scrubbing finds corrupt data:

ceph health detail | grep inconsistent
# Example output: pg 2.1a is active+clean+inconsistent

ceph pg repair 2.1a

Ceph attempts to repair the PG by fixing inconsistent metadata and, in replicated pools, marking the bad copy missing so normal recovery can refill it from an authoritative replica.

Summary

Deep scrubbing is essential for maintaining long-term data integrity in Ceph. By reading data off disk and verifying checksums, it catches silent corruption before it affects applications. Configuring appropriate scrub intervals, monitoring for inconsistent PGs, and using the repair command to fix detected issues keeps your cluster healthy and your data trustworthy.