----------------------------------------------------------- This is an automatically generated e-mail. To reply, visit: https://reviews.apache.org/r/44948/ -----------------------------------------------------------
Review request for mesos, Jie Yu and Jiang Yan Xu. Bugs: MESOs-4828 https://issues.apache.org/jira/browse/MESOs-4828 Repository: mesos Description ------- Track sandbox directory usage by dynamically assigning XFS project quotas. We track a range of XFS project IDs, assigning a project ID and a project quota to each sandbox as it is created. When the task reaches the quota, writes will fail with EDQUOT, and the task will have an opportunity to handle that. Quotas are not applied to volume resources since the isolator interface has no insight into the volume lifecycle. Thus it is not currently possible to accurately assign and reclaim project IDs. If LOW is the lower bound of the project ID range and HIGH is the upper bound, you can show the currently allocated project quotas using the xfs_quota command: $ xfs_quota -x -c "report -a -n -L LOW -U HIGH" To show the project ID assigned to the file PATH, use the xfs_io command: $ xfs_io -r -c stat PATH Diffs ----- src/Makefile.am 9dd21b56af0500f7125b07bf535b45fe5c544aaf src/slave/containerizer/mesos/containerizer.cpp 4638d08328127a8c4ae37555f2be74fe9695da31 src/slave/containerizer/mesos/isolators/disk/xfs.hpp PRE-CREATION src/slave/containerizer/mesos/isolators/disk/xfs.cpp PRE-CREATION src/slave/flags.hpp feb095da4521f678c96f4cc53bdfda262d350388 src/slave/flags.cpp b77afa956834bb5b1f85301d7a5f386ab9da41e3 Diff: https://reviews.apache.org/r/44948/diff/ Testing ------- Make check. Manual testing. Tests in subsequent patches. Thanks, James Peach