[ 
https://issues.apache.org/jira/browse/HADOOP-6387?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13041516#comment-13041516
 ] 

Hadoop QA commented on HADOOP-6387:
-----------------------------------

-1 overall.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12480923/HADOOP-6387.patch
  against trunk revision 1128789.

    +1 @author.  The patch does not contain any @author tags.

    -1 tests included.  The patch doesn't appear to include any new or modified 
tests.
                        Please justify why no new tests are needed for this 
patch.
                        Also please list what manual steps were performed to 
verify this patch.

    +1 javadoc.  The javadoc tool did not generate any warning messages.

    -1 javac.  The patch appears to cause tar ant target to fail.

    +1 findbugs.  The patch does not introduce any new Findbugs (version 1.3.9) 
warnings.

    +1 release audit.  The applied patch does not increase the total number of 
release audit warnings.

    -1 core tests.  The patch failed these core unit tests:


    -1 system test framework.  The patch failed system test framework compile.

Test results: 
https://builds.apache.org/hudson/job/PreCommit-HADOOP-Build/541//testReport/
Findbugs warnings: 
https://builds.apache.org/hudson/job/PreCommit-HADOOP-Build/541//artifact/trunk/build/test/findbugs/newPatchFindbugsWarnings.html
Console output: 
https://builds.apache.org/hudson/job/PreCommit-HADOOP-Build/541//console

This message is automatically generated.

> FsShell -getmerge source file pattern is broken
> -----------------------------------------------
>
>                 Key: HADOOP-6387
>                 URL: https://issues.apache.org/jira/browse/HADOOP-6387
>             Project: Hadoop Common
>          Issue Type: Bug
>          Components: fs
>    Affects Versions: 0.23.0
>            Reporter: Eli Collins
>            Assignee: XieXianshan
>            Priority: Minor
>             Fix For: 0.23.0
>
>         Attachments: HADOOP-6387.patch
>
>
> The FsShell -getmerge command doesn't work if the "source file pattern" 
> matches files. See below. If the current behavior is intended then we should 
> update the help documentation and java docs to match, but it would be nice if 
> the user could specify a set of files in a directory rather than just 
> directories.
> {code}
> $ hadoop fs -help getmerge
> -getmerge <src> <localdst>:  Get all the files in the directories that 
>               match the source file pattern and merge and sort them to only
>               one file on local fs. <src> is kept.
> $ hadoop fs -ls
> Found 3 items
> -rw-r--r--   1 eli supergroup          2 2009-11-23 17:39 /user/eli/1.txt
> -rw-r--r--   1 eli supergroup          2 2009-11-23 17:39 /user/eli/2.txt
> -rw-r--r--   1 eli supergroup          2 2009-11-23 17:39 /user/eli/3.txt
> $ hadoop fs -getmerge /user/eli/*.txt sorted.txt
> $ cat sorted.txt
> cat: sorted.txt: No such file or directory
> $ hadoop fs -getmerge /user/eli/* sorted.txt
> $ cat sorted.txt
> cat: sorted.txt: No such file or directory
> $ hadoop fs -getmerge /user/* sorted.txt
> $ cat sorted.txt 
> 1
> 2
> 3
> {code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to