You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hdfs-dev@hadoop.apache.org by "Stephen Chu (JIRA)" <ji...@apache.org> on 2013/08/02 21:15:49 UTC

[jira] [Created] (HDFS-5059) Unnecessary permission denied error when creating/deleting snapshots with a non-existent directory

Stephen Chu created HDFS-5059:
---------------------------------

             Summary: Unnecessary permission denied error when creating/deleting snapshots with a non-existent directory
                 Key: HDFS-5059
                 URL: https://issues.apache.org/jira/browse/HDFS-5059
             Project: Hadoop HDFS
          Issue Type: Bug
          Components: snapshots
    Affects Versions: 3.0.0
            Reporter: Stephen Chu
            Priority: Trivial


As a non-superuser, when you create and delete a snapshot but accidentally specify a non-existent directory to snapshot, you will see an extra/unnecessary permission denied error right after the "No such file or directory" error.

{code}
[schu@hdfs-snapshots-vanilla ~]$ hdfs dfs -deleteSnapshot /user/schuf/ snap1
deleteSnapshot: `/user/schuf/': No such file or directory
deleteSnapshot: Permission denied
[schu@hdfs-snapshots-vanilla ~]$ hdfs dfs -createSnapshot /user/schuf/ snap1
createSnapshot: `/user/schuf/': No such file or directory
createSnapshot: Permission denied
{code}



As the HDFS superuser, instead of the "Permission denied" error you'll get an extra "Directory does not exist" error.

{code}
[root@hdfs-snapshots-vanilla ~]# hdfs dfs -deleteSnapshot /user/schuf/ snap1
deleteSnapshot: `/user/schuf/': No such file or directory
deleteSnapshot: Directory does not exist: /user/schuf
{code}


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira