博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
OSD磁盘日常监控
阅读量:5079 次
发布时间:2019-06-12

本文共 2302 字,大约阅读时间需要 7 分钟。

摘要:对ceph OSD磁盘,做好定期的性能数据采集和通电时长管理,长期的数据积累对磁盘的性能与生命周期管理会有一定帮助,同时也能确保整个集群性能的稳定。

磁盘碎片管理

查看磁盘碎片

# xfs_db -c frag -r /dev/sdb1actual 981, ideal 964, fragmentation factor 1.73%

整理碎片

# xfs_fsr /dev/sdb1

OSD磁盘性能

root@demo:~# ceph --admin-daemon /var/run/ceph/ceph-osd.0.asok perf dump{    "WBThrottle": {        "bytes_dirtied": 0,        "bytes_wb": 0,        "ios_dirtied": 0,        "ios_wb": 0,        "inodes_dirtied": 0,        "inodes_wb": 0    },    "filestore": {        "journal_queue_max_ops": 300,        "journal_queue_ops": 0,        "journal_ops": 3210,        "journal_queue_max_bytes": 33554432,        "journal_queue_bytes": 0,        "journal_bytes": 5007708,        "journal_latency": {            "avgcount": 3210,            "sum": 9.786657669        },        "journal_wr": 2643,        "journal_wr_bytes": {            "avgcount": 2643,            "sum": 13221888        },        "journal_full": 0,        "committing": 0,        "commitcycle": 270,        "commitcycle_interval": {            "avgcount": 270,            "sum": 1352.249982669        },        "commitcycle_latency": {            "avgcount": 270,            "sum": 2.088010691        },        "op_queue_max_ops": 50,        "op_queue_ops": 0,        "ops": 3210,        "op_queue_max_bytes": 104857600,        "op_queue_bytes": 0,        "bytes": 4962768,        "apply_latency": {            "avgcount": 3210,            "sum": 34.241022045        },        "queue_transaction_latency_avg": {            "avgcount": 3210,            "sum": 0.431766161        }    },......}
root@demo:~# ceph osd perfosd fs_commit_latency(ms) fs_apply_latency(ms)  0                     3                   10  1                     3                   12  2                     3                   13

通电时长

# smartctl -A /dev/sdasmartctl 5.41 2011-06-09 r3365 [x86_64-linux-3.8.0-44-generic] (local build)Copyright (C) 2002-11 by Bruce Allen, http://smartmontools.sourceforge.netCurrent Drive Temperature:     27 CDrive Trip Temperature:        65 CElements in grown defect list: 0Vendor (Seagate) cache information  Blocks sent to initiator = 0Vendor (Seagate/Hitachi) factory information  number of hours powered up = 53413.70  number of minutes until next internal SMART test = 7

转载于:https://www.cnblogs.com/gaohong/p/4884297.html

你可能感兴趣的文章
硬件笔记之Thinkpad T470P更换2K屏幕
查看>>
蓝桥杯-分小组-java
查看>>
Android Toast
查看>>
JAVA面试常见问题之Redis篇
查看>>
jdk1.8 api 下载
查看>>
getElement的几中属性介绍
查看>>
HTML列表,表格与媒体元素
查看>>
Introduction to my galaxy engine 2: Depth of field
查看>>
设计器 和后台代码的转换 快捷键
查看>>
STL容器之vector
查看>>
数据中心虚拟化技术
查看>>
复习文件操作
查看>>
SQL Server 使用作业设置定时任务之一(转载)
查看>>
第二阶段冲刺-01
查看>>
BZOJ1045 HAOI2008 糖果传递
查看>>
JavaScript 克隆数组
查看>>
eggs
查看>>
oracle 报错ORA-12514: TNS:listener does not currently know of service requested in connec
查看>>
基于grunt构建的前端集成开发环境
查看>>
利用循环播放dataurl的视频来防止锁屏:NoSleep.js
查看>>