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

Chris Douglas updated HADOOP-1916:
----------------------------------

    Attachment: 1916.patch

> FSShell put or CopyFromLocal incorrectly treats "."
> ---------------------------------------------------
>
>                 Key: HADOOP-1916
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1916
>             Project: Hadoop
>          Issue Type: Bug
>          Components: fs
>    Affects Versions: 0.14.1
>            Reporter: Konstantin Shvachko
>             Fix For: 0.15.0
>
>         Attachments: 1916.patch
>
>
> The following dfs shell command
> {code}
> bin/hadoop dfs -put README.txt .
> {code}
> results in creating a file /user/<user name> with the contents of README.txt.
> A correct behavior would be creating a directory and a file in it: 
> /user/<user name>/README.txt
> The put command works correctly if /user/<user name> already exists.
> So the following sequence of command leads to the desired result:
> {code}
> bin/hadoop dfs -mkdir .
> bin/hadoop dfs -put README.txt .
> {code}

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

Reply via email to