Skip to content

Instantly share code, notes, and snippets.

@prasanthkothuri
Last active May 10, 2019 11:04
Show Gist options
  • Save prasanthkothuri/c0fe41906a8032a660a3ecfa804621a3 to your computer and use it in GitHub Desktop.
Save prasanthkothuri/c0fe41906a8032a660a3ecfa804621a3 to your computer and use it in GitHub Desktop.
# set acl
hdfs dfs -setfacl -R -m user:{user_name}:rwx /path/to/the/directory
# find the quota
hdfs dfs -count -v -q -h /path/to/the/directory
# Set the space quota
hdfs dfsadmin -setSpaceQuota 500g /path/to/the/directory
# Set file / dir (inodes) quota
hdfs dfsadmin -setQuota 500000 /path/to/the/directory
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment