Repository: hadoop Updated Branches: refs/heads/branch-2 051a622b5 -> 40d8faf86
HADOOP-9891. CLIMiniCluster instructions fail with MiniYarnCluster ClassNotFoundException (Darrell Taylor via aw) (cherry picked from commit 4d8fb8c19c04088cf8f8e9deecb571273adeaab5) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/40d8faf8 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/40d8faf8 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/40d8faf8 Branch: refs/heads/branch-2 Commit: 40d8faf8682c394819598f2c51457e69f67513f0 Parents: 051a622 Author: Allen Wittenauer <[email protected]> Authored: Wed May 27 16:36:55 2015 -0700 Committer: Gera Shegalov <[email protected]> Committed: Tue Aug 18 12:32:09 2015 -0700 ---------------------------------------------------------------------- hadoop-common-project/hadoop-common/CHANGES.txt | 5 ++++- .../hadoop-common/src/site/markdown/CLIMiniCluster.md.vm | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/40d8faf8/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 dfd6654..3776ae0 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -237,7 +237,10 @@ Release 2.8.0 - UNRELEASED HADOOP-12318. Expose underlying LDAP exceptions in SaslPlainServer. (Mike Yoder via atm) - OPTIMIZATIONS + HADOOP-9891. CLIMiniCluster instructions fail with MiniYarnCluster + ClassNotFoundException (Darrell Taylor via aw) + + OPTIMIZATIONS HADOOP-11785. Reduce the number of listStatus operation in distcp buildListing (Zoran Dimitrijevic via Colin P. McCabe) http://git-wip-us.apache.org/repos/asf/hadoop/blob/40d8faf8/hadoop-common-project/hadoop-common/src/site/markdown/CLIMiniCluster.md.vm ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/site/markdown/CLIMiniCluster.md.vm b/hadoop-common-project/hadoop-common/src/site/markdown/CLIMiniCluster.md.vm index 25fecda..c7da62b 100644 --- a/hadoop-common-project/hadoop-common/src/site/markdown/CLIMiniCluster.md.vm +++ b/hadoop-common-project/hadoop-common/src/site/markdown/CLIMiniCluster.md.vm @@ -44,7 +44,7 @@ Running the MiniCluster From inside the root directory of the extracted tarball, you can start the CLI MiniCluster using the following command: - $ bin/hadoop jar ./share/hadoop/mapreduce/hadoop-mapreduce-client-jobclient-${project.version}-tests.jar minicluster -rmport RM_PORT -jhsport JHS_PORT + $ HADOOP_CLASSPATH=share/hadoop/yarn/test/hadoop-yarn-server-tests-${project.version}-tests.jar bin/hadoop jar ./share/hadoop/mapreduce/hadoop-mapreduce-client-jobclient-${project.version}-tests.jar minicluster -rmport RM_PORT -jhsport JHS_PORT In the example command above, `RM_PORT` and `JHS_PORT` should be replaced by the user's choice of these port numbers. If not specified, random free ports will be used.
