[
https://issues.apache.org/jira/browse/HADOOP-3012?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12580722#action_12580722
]
Hadoop QA commented on HADOOP-3012:
-----------------------------------
+1 overall. Here are the results of testing the latest attachment
http://issues.apache.org/jira/secure/attachment/12378190/HADOOP-3012_1.patch
against trunk revision 619744.
@author +1. The patch does not contain any @author tags.
tests included +1. The patch appears to include 6 new or modified tests.
javadoc +1. The javadoc tool did not generate any warning messages.
javac +1. The applied patch does not generate any new javac compiler
warnings.
release audit +1. The applied patch does not generate any new release
audit warnings.
findbugs +1. The patch does not introduce any new Findbugs warnings.
core tests +1. The patch passed core unit tests.
contrib tests +1. The patch passed contrib unit tests.
Test results:
http://hudson.zones.apache.org/hudson/job/Hadoop-Patch/2009/testReport/
Findbugs warnings:
http://hudson.zones.apache.org/hudson/job/Hadoop-Patch/2009/artifact/trunk/build/test/findbugs/newPatchFindbugsWarnings.html
Checkstyle results:
http://hudson.zones.apache.org/hudson/job/Hadoop-Patch/2009/artifact/trunk/build/test/checkstyle-errors.html
Console output:
http://hudson.zones.apache.org/hudson/job/Hadoop-Patch/2009/console
This message is automatically generated.
> 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.