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

推荐订阅源

B
Blog RSS Feed
量子位
Recent Announcements
Recent Announcements
T
The Blog of Author Tim Ferriss
美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Blog — PlanetScale
Blog — PlanetScale
H
Help Net Security
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
大猫的无限游戏
大猫的无限游戏
V
Visual Studio Blog
博客园 - 聂微东
aimingoo的专栏
aimingoo的专栏
Microsoft Security Blog
Microsoft Security Blog
U
Unit 42
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
IT之家
IT之家
Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
L
LangChain 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 pg-upmap for PG Mapping in Ceph
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

What is pg-upmap

The pg-upmap feature allows you to override the CRUSH algorithm's PG placement decisions on a per-PG basis. This is useful when you want to:

  • Rebalance data more precisely than the default balancer provides
  • Move specific PGs off an OSD before maintenance
  • Fix uneven distribution without changing the CRUSH map

pg-upmap requires all clients to be running Luminous or later. In Kubernetes environments with Rook, all CSI clients meet this requirement.

Enabling pg-upmap

Enable the balancer module which uses pg-upmap internally:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph mgr module enable balancer

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph balancer mode upmap

Checking Current PG Mapping

View the current effective mapping for a PG (includes any upmap overrides):

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph pg map 1.0

View existing upmap overrides:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph osd dump | grep upmap

Manually Adding a pg-upmap Entry

Override the mapping for a specific PG to move it from one OSD to another:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph osd pg-upmap-items 1.0 2 7

This tells Ceph that PG 1.0 should use OSD 7 instead of OSD 2. Ceph will migrate data accordingly.

Using the Automatic Balancer

Instead of manually specifying upmap entries, let the balancer compute optimal entries:

# Check what the balancer would do
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph balancer eval

# Preview the optimization plan
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph balancer optimize myplan

# Apply the plan
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph balancer execute myplan

Removing pg-upmap Overrides

Remove a specific upmap override:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph osd rm-pg-upmap-items 1.0

Remove all upmap overrides from the cluster:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph osd dump | grep '^pg_upmap_items ' | awk '{print $2}' | \
  xargs -I {} kubectl -n rook-ceph exec deploy/rook-ceph-tools -- \
    ceph osd rm-pg-upmap-items {}

Monitoring Upmap Effects

After applying upmap entries, watch recovery progress:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph -w | grep -E "backfill|recovery|misplaced"

Check OSD utilization after rebalancing:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- ceph osd df

Summary

pg-upmap allows fine-grained control over PG placement beyond what the CRUSH algorithm computes. Use the balancer module with upmap mode for automatic optimization, or add manual upmap entries for specific migration needs. Always monitor recovery progress after applying upmap changes and verify improved balance with ceph osd df.