Repository: hadoop Updated Branches: refs/heads/branch-2 d6c860966 -> d1253f695 refs/heads/branch-2.7 5b4eda757 -> 37673268e
HADOOP-11872. "hadoop dfs" command prints message about using "yarn jar" on Windows(branch-2 only). Contributed by Varun Vasudev. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/d1253f69 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/d1253f69 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/d1253f69 Branch: refs/heads/branch-2 Commit: d1253f695df67ff27963d8ea4734b8a9aa79565b Parents: d6c8609 Author: cnauroth <[email protected]> Authored: Thu Apr 23 13:10:39 2015 -0700 Committer: cnauroth <[email protected]> Committed: Thu Apr 23 13:10:39 2015 -0700 ---------------------------------------------------------------------- hadoop-common-project/hadoop-common/CHANGES.txt | 3 +++ hadoop-common-project/hadoop-common/src/main/bin/hadoop.cmd | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/d1253f69/hadoop-common-project/hadoop-common/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index a9a365d..5bb050b 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -122,6 +122,9 @@ Release 2.7.1 - UNRELEASED HADOOP-11868. Invalid user logins trigger large backtraces in server log (Chang Li via jlowe) + HADOOP-11872. "hadoop dfs" command prints message about using "yarn jar" on + Windows(branch-2 only) (Varun Vasudev via cnauroth) + Release 2.7.0 - 2015-04-20 INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/hadoop/blob/d1253f69/hadoop-common-project/hadoop-common/src/main/bin/hadoop.cmd ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/main/bin/hadoop.cmd b/hadoop-common-project/hadoop-common/src/main/bin/hadoop.cmd index d53ba57..ccf2fff 100644 --- a/hadoop-common-project/hadoop-common/src/main/bin/hadoop.cmd +++ b/hadoop-common-project/hadoop-common/src/main/bin/hadoop.cmd @@ -246,8 +246,6 @@ call :updatepath %HADOOP_BIN_PATH% goto :MakeCmdArgsLoop :EndLoop set hadoop-command-arguments=%_arguments% - @echo note: please use "yarn jar" to launch - @echo YARN applications, not this command. goto :eof :print_usage @@ -256,6 +254,8 @@ call :updatepath %HADOOP_BIN_PATH% @echo fs run a generic filesystem user client @echo version print the version @echo jar ^<jar^> run a jar file + @echo note: please use "yarn jar" to launch + @echo YARN applications, not this command. @echo checknative [-a^|-h] check native hadoop and compression libraries availability @echo distcp ^<srcurl^> ^<desturl^> copy file or directories recursively @echo archive -archiveName NAME -p ^<parent path^> ^<src^>* ^<dest^> create a hadoop archive
