You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Mahadev konar (JIRA)" <ji...@apache.org> on 2008/03/19 01:24:24 UTC

[jira] Updated: (HADOOP-3012) dfs -mv file to user home directory fails silently if the user home directory does not exist

     [ https://issues.apache.org/jira/browse/HADOOP-3012?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mahadev konar updated HADOOP-3012:
----------------------------------

    Attachment: HADOOP-3012_1.patch

this patch fixes the issue and errors out on -mv option. It is consistent with last versiosn of hadoop that -mv does not create the parent directories... 

> dfs -mv file to user home directory fails silently if the user home directory does not exist
> --------------------------------------------------------------------------------------------
>
>                 Key: HADOOP-3012
>                 URL: https://issues.apache.org/jira/browse/HADOOP-3012
>             Project: Hadoop Core
>          Issue Type: Bug
>          Components: fs
>    Affects Versions: 0.17.0
>            Reporter: Mukund Madhugiri
>            Assignee: Mahadev konar
>            Priority: Blocker
>             Fix For: 0.17.0
>
>         Attachments: HADOOP-3012_1.patch
>
>
> dfs -mv file to user home directory fails silently if the user home directory does not exist. This was working before. It will move the file if the user home directory exists.
> Here is the sequence:
> 1. bin/hadoop dfs -lsr /
> /file1  <r 3>   0       2008-03-13 19:54        rw-r--r--       hadoopqa        supergroup
> 2. bin/hadoop dfs -mv /file1 file2
> 3. bin/hadoop dfs -lsr /
> /file1  <r 3>   0       2008-03-13 19:54        rw-r--r--       hadoopqa        supergroup
> 4. hadoop dfs -lsr /
> /file1  <r 3>   0       2008-03-13 19:54        rw-r--r--       hadoopqa        supergroup
> /user   <dir>           2008-03-13 20:07        rwxr-xr-x       hadoopqa        supergroup
> /user/hadoopqa  <dir>           2008-03-13 20:07        rwxr-xr-x       hadoopqa        supergroup
> /user/hadoopqa/file0    <r 3>   0       2008-03-13 20:07        rw-r--r--       hadoopqa        supergroup
> 5. bin/hadoop dfs -mv /file1 file2
> 6. bin/hadoop dfs -lsr /
> /user   <dir>           2008-03-13 20:07        rwxr-xr-x       hadoopqa        supergroup
> /user/hadoopqa  <dir>           2008-03-13 20:08        rwxr-xr-x       hadoopqa        supergroup
> /user/hadoopqa/file0    <r 3>   0       2008-03-13 20:07        rw-r--r--       hadoopqa        supergroup
> /user/hadoopqa/file2    <r 3>   0       2008-03-13 19:54        rw-r--r--       hadoopqa        supergroup
> In step #2, it fails to move the file.
> In step #5, it moves the file as /user/hadoopqa directory exists.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.