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

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
I
InfoQ
博客园_首页
G
Google Developers Blog
爱范儿
爱范儿
Last Week in AI
Last Week in AI
量子位
阮一峰的网络日志
阮一峰的网络日志
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
月光博客
月光博客
The GitHub Blog
The GitHub Blog
V
Visual Studio Blog
N
Netflix TechBlog - Medium
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东

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 Multipath Devices with Ceph OSDs
Nawaz Dhandala · 2026-03-31 · via OneUptime Blog

Overview

Multipath I/O (MPIO) provides redundant paths to storage devices, typically SAN-attached disks. When using multipath with Ceph OSDs via Rook, you need to ensure the multipath device mapper (/dev/mapper/mpathX) is visible inside OSD pods and properly configured.

Prerequisites

Ensure multipathd is running on all Kubernetes nodes:

systemctl status multipathd
systemctl enable --now multipathd

Verify multipath devices are visible:

multipath -ll
ls /dev/mapper/mpath*

Step 1: Configure Multipath on the Host

Create or update /etc/multipath.conf:

cat /etc/multipath.conf
defaults {
    user_friendly_names yes
    find_multipaths yes
}
blacklist {
    devnode "^sd[a-z]$"
}
devices {
    device {
        vendor "NETAPP"
        product "LUN"
        path_grouping_policy failover
        path_checker tur
        failback immediate
    }
}

Reload multipath configuration:

systemctl reload multipathd
multipath -r

Step 2: Configure Rook to Use Multipath Devices

In the CephCluster spec, reference the multipath device by its /dev/mapper path or by wwid:

spec:
  storage:
    nodes:
    - name: worker-1
      devices:
      - name: /dev/mapper/mpatha
      - name: /dev/mapper/mpathb
    config:
      osdsPerDevice: "1"

Alternatively use device path filter with mapper paths:

spec:
  storage:
    useAllNodes: false
    useAllDevices: false
    nodes:
    - name: worker-1
      devicePathFilter: "^/dev/mapper/mpath"

Step 3: Allow Device Mapper in OSD Pods

Rook OSD pods need access to the device mapper. The Rook operator runs OSD pods with the necessary privileges by default to access /dev/mapper devices. You can verify the OSD configuration includes the correct device class:

spec:
  storage:
    config:
      deviceClass: ssd

Check if the device is properly detected:

kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph osd tree

Step 4: Verify OSD Creation

After applying the CephCluster config, check that OSDs are created on the multipath devices:

kubectl -n rook-ceph get pods -l app=rook-ceph-osd
kubectl -n rook-ceph exec -it deploy/rook-ceph-tools -- \
  ceph osd metadata 0 | grep -i device

Troubleshooting

If OSDs fail to start on multipath devices, check the OSD prepare logs:

kubectl -n rook-ceph logs -l app=rook-ceph-osd-prepare --tail=50

Verify device mapper symlinks inside the node:

kubectl debug node/worker-1 -it --image=busybox -- \
  chroot /host ls -la /dev/mapper/

Summary

Using multipath devices with Ceph OSDs requires configuring multipathd on the host, referencing /dev/mapper/mpathX paths in the CephCluster storage spec, and ensuring OSD pods have access to device mapper nodes. This setup provides path-level redundancy for SAN-attached storage used as Ceph OSDs.