ceph mds 配额设置#yyds干货盘点#
Posted 坚韧的石头
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ceph mds 配额设置#yyds干货盘点#相关的知识,希望对你有一定的参考价值。
1、setfattr(容量设置)
1.1 设置 容量
## dir 为 云存储 目录中的 路径 ## 设置 容量 大小
## setfattr -n ceph.quota.max_bytes -v Bytes mount_path/dir
## 设置 文件数 大小
## setfattr -n ceph.quota.max_files -v files_num mount_path/dir
1.2 取消 容量设置
## dir 为 云存储 目录中的 路径
## 不限制 容量 大小
## setfattr -n ceph.quota.max_bytes -v 0 mount_path/dir
## 不限制 文件数 大小
## setfattr -n ceph.quota.max_files -v 0 mount_path/dir
2.4 getfattr(获取设置)
## dir 为 云存储 目录中的 路径
## 获取 容量 大小
## getfattr -n ceph.quota.max_bytes mount_path/dir
## 获取 文件数 大小
## getfattr -n ceph.quota.max_files mount_path/dir
以上是关于ceph mds 配额设置#yyds干货盘点#的主要内容,如果未能解决你的问题,请参考以下文章