ceph mds 配额设置#yyds干货盘点#

人生必须的知识就是引人向光明方面的明灯。这篇文章主要讲述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


【ceph mds 配额设置#yyds干货盘点#】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


?

    推荐阅读