7.3. 查看配额
使用 getfattr
命令和 ceph.quota
扩展属性来查看目录的配额设置。
注意
如果属性出现在目录索引节点中,则该目录具有配置的配额。如果索引节点中未显示这些属性,则该目录没有设置配额,尽管其父目录可能已配置了配额。如果扩展属性的值为 0
,则不设置配额。
先决条件
- 对 Ceph 客户端节点的根级别访问权限。
-
已安装
attr
软件包。
流程
查看 CephFS 配额:
使用字节限制配额:
语法
getfattr -n ceph.quota.max_bytes DIRECTORY
示例
[root@client ~]# getfattr -n ceph.quota.max_bytes /mnt/cephfs/ getfattr: Removing leading '/' from absolute path names # file: mnt/cephfs/ ceph.quota.max_bytes="100000000"
在这个示例中,
100000000
等于 100 MB。使用 file-limit 配额:
语法
getfattr -n ceph.quota.max_files DIRECTORY
示例
[root@client ~]# getfattr -n ceph.quota.max_files /mnt/cephfs/ getfattr: Removing leading '/' from absolute path names # file: mnt/cephfs/ ceph.quota.max_files="10000"
在本例中,
10000
等于 10,000 个文件。
其它资源
-
如需更多信息,请参阅
getfattr(1)
手册页。