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

推荐订阅源

V
V2EX
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
博客园 - Franky
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
IT之家
IT之家
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio Blog
S
SegmentFault 最新的问题
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
有赞技术团队
有赞技术团队
B
Blog RSS Feed
Last Week in AI
Last Week in AI
Jina AI
Jina AI
博客园 - 司徒正美
The Cloudflare 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 Understand the peering PG State in Ceph
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

Peering is the process by which all OSDs in a PG's acting set agree on the complete and consistent state of every object in the PG. A PG must complete peering before it can serve any I/O. Understanding peering is fundamental to diagnosing cluster startup and OSD failure recovery.

What Peering Is

When a PG starts or any OSD in its acting set changes, the PG must peer. The primary OSD:

  1. Contacts all replica OSDs and requests their PG logs
  2. Determines the authoritative object version history
  3. Identifies any objects that need recovery or removal
  4. Marks the PG as active when all replicas agree

Until peering completes, the PG is peering and cannot serve I/O.

Checking Peering PGs

ceph status
# HEALTH_WARN: X pgs not active

ceph pg stat | grep peering

# List PGs currently in peering
ceph pg dump | grep "peering"

How Long Peering Takes

Peering should complete in seconds. If it is taking minutes, something is wrong. Check:

# PGs that have been peering for a long time
ceph health detail | grep -i "stuck"

# Per-PG peering state
ceph pg <pg-id> query | jq '.recovery_state.name'

Why PGs Get Stuck in Peering

Not enough OSDs up

For a size 3 pool with min_size 2, at least 2 OSDs must be up:

# Check acting set for stuck PG
ceph pg <pg-id> query | jq '{acting: .acting, up: .up}'

# Check which OSDs are down
ceph osd tree | grep down

pg_temp map issues

Old pg_temp entries can confuse peering:

ceph osd dump | grep pg_temp
ceph osd pg-temp <pg-id>  # clear pg_temp by passing no OSDs

Stuck in WaitUpThru

The PG may wait for the monitor's epoch to advance:

ceph pg <pg-id> query | jq '.recovery_state'

If stuck in WaitUpThru, the OSD is waiting for the monitor to acknowledge its up_thru value. Restarting the affected OSD or triggering an OSD map update can help:

# Check current OSD map epoch
ceph osd stat

# Restart the affected OSD to trigger a new map update
systemctl restart ceph-osd@<osd-id>

Viewing Peering Log

ceph pg <pg-id> query | jq '.recovery_state.prior_set'
ceph pg <pg-id> query | jq '.peer_info'

Forcing Peering

If a PG is stuck peering because not enough OSDs are available, you can lower the pool's min_size to allow the PG to become active with fewer replicas:

ceph osd pool set <pool-name> min_size 1

This allows PGs to become active with only one copy and may serve stale data. Restore the original min_size once the missing OSDs are recovered. Use only when you need to restore I/O and accept the risk of reduced redundancy.

Peering After Cluster Restart

After a full cluster restart, all PGs start peering simultaneously. This is normal and usually resolves quickly:

watch ceph pg stat
# peering count decreases as OSDs complete startup

Summary

Peering is the negotiation phase where all acting OSDs for a PG agree on its authoritative state. It is a brief transitional state that precedes active. PGs stuck in peering indicate a problem with OSD availability or the peering protocol. Resolve by ensuring all acting OSDs are reachable or by adjusting pool min_size if permanent OSD loss has occurred.