FAQ: How do I check the quota for my allocated storage?
Answer:
Home directory quota: To check the quota for your home directory use
quota -s as follows:
username@login:~$ quota -s
Disk quotas for user username (uid xxx):
Filesystem blocks quota limit grace files quota limit grace
clhome:/srv/clhome
2580M 8192M 10240M 9391 0 0
HDFS storage quota: You can execute
hadoop fs -count -q . to check your HDFS quota. The displayed result has the following format:
QUOTA, REMAINING_QUOTA, SPACE_QUOTA, REMAINING_SPACE_QUOTA, DIR_COUNT, FILE_COUNT, CONTENT_SIZE, FILE_NAME
username@login:~$ hadoop fs -count -q .
none inf 1099511627776 1072558118818 117 1327 8984495806 hdfs://hdfsname/user/username
Back to: CloudClusterFAQ