MAPREDUCE-5945. Update the description of GenericOptionsParser -jt option (Akira AJISAKA via aw)
This commit is contained in:
parent
b40f433cf8
commit
c7c8e388a9
|
@ -49,9 +49,9 @@ import org.apache.hadoop.security.UserGroupInformation;
|
|||
* <code>GenericOptionsParser</code> is a utility to parse command line
|
||||
* arguments generic to the Hadoop framework.
|
||||
*
|
||||
* <code>GenericOptionsParser</code> recognizes several standarad command
|
||||
* <code>GenericOptionsParser</code> recognizes several standard command
|
||||
* line arguments, enabling applications to easily specify a namenode, a
|
||||
* jobtracker, additional configuration resources etc.
|
||||
* ResourceManager, additional configuration resources etc.
|
||||
*
|
||||
* <h4 id="GenericOptions">Generic Options</h4>
|
||||
*
|
||||
|
@ -60,7 +60,7 @@ import org.apache.hadoop.security.UserGroupInformation;
|
|||
* -conf <configuration file> specify a configuration file
|
||||
* -D <property=value> use value for given property
|
||||
* -fs <local|namenode:port> specify a namenode
|
||||
* -jt <local|jobtracker:port> specify a job tracker
|
||||
* -jt <local|resourcemanager:port> specify a ResourceManager
|
||||
* -files <comma separated list of files> specify comma separated
|
||||
* files to be copied to the map reduce cluster
|
||||
* -libjars <comma separated list of jars> specify comma separated
|
||||
|
@ -91,11 +91,11 @@ import org.apache.hadoop.security.UserGroupInformation;
|
|||
* $ bin/hadoop dfs -conf core-site.xml -conf hdfs-site.xml -ls /data
|
||||
* list /data directory in dfs with multiple conf files specified.
|
||||
*
|
||||
* $ bin/hadoop job -D mapred.job.tracker=darwin:50020 -submit job.xml
|
||||
* submit a job to job tracker darwin:50020
|
||||
* $ bin/hadoop job -D yarn.resourcemanager.address=darwin:8032 -submit job.xml
|
||||
* submit a job to ResourceManager darwin:8032
|
||||
*
|
||||
* $ bin/hadoop job -jt darwin:50020 -submit job.xml
|
||||
* submit a job to job tracker darwin:50020
|
||||
* $ bin/hadoop job -jt darwin:8032 -submit job.xml
|
||||
* submit a job to ResourceManager darwin:8032
|
||||
*
|
||||
* $ bin/hadoop job -jt local -submit job.xml
|
||||
* submit a job to local runner
|
||||
|
@ -213,9 +213,9 @@ public class GenericOptionsParser {
|
|||
.hasArg()
|
||||
.withDescription("specify a namenode")
|
||||
.create("fs");
|
||||
Option jt = OptionBuilder.withArgName("local|jobtracker:port")
|
||||
Option jt = OptionBuilder.withArgName("local|resourcemanager:port")
|
||||
.hasArg()
|
||||
.withDescription("specify a job tracker")
|
||||
.withDescription("specify a ResourceManager")
|
||||
.create("jt");
|
||||
Option oconf = OptionBuilder.withArgName("configuration file")
|
||||
.hasArg()
|
||||
|
@ -408,7 +408,7 @@ public class GenericOptionsParser {
|
|||
else {
|
||||
// check if the file exists in this file system
|
||||
// we need to recreate this filesystem object to copy
|
||||
// these files to the file system jobtracker is running
|
||||
// these files to the file system ResourceManager is running
|
||||
// on.
|
||||
FileSystem fs = path.getFileSystem(conf);
|
||||
if (!fs.exists(path)) {
|
||||
|
@ -502,7 +502,7 @@ public class GenericOptionsParser {
|
|||
out.println("-conf <configuration file> specify an application configuration file");
|
||||
out.println("-D <property=value> use value for given property");
|
||||
out.println("-fs <local|namenode:port> specify a namenode");
|
||||
out.println("-jt <local|jobtracker:port> specify a job tracker");
|
||||
out.println("-jt <local|resourcemanager:port> specify a ResourceManager");
|
||||
out.println("-files <comma separated list of files> " +
|
||||
"specify comma separated files to be copied to the map reduce cluster");
|
||||
out.println("-libjars <comma separated list of jars> " +
|
||||
|
|
|
@ -56,7 +56,7 @@ Generic Options
|
|||
*------------------------------------------------+-----------------------------+
|
||||
|<<<-D \<property\>=\<value\> >>> | Use value for given property.
|
||||
*------------------------------------------------+-----------------------------+
|
||||
|<<<-jt \<local\> or \<jobtracker:port\> >>> | Specify a job tracker.
|
||||
|<<<-jt \<local\> or \<resourcemanager:port\>>>> | Specify a ResourceManager.
|
||||
| Applies only to job.
|
||||
*------------------------------------------------+-----------------------------+
|
||||
|<<<-files \<comma separated list of files\> >>> | Specify comma separated files
|
||||
|
|
|
@ -387,6 +387,9 @@ Release 2.6.0 - UNRELEASED
|
|||
MAPREDUCE-5796. Use current version of the archive name in
|
||||
DistributedCacheDeploy document (Akira AJISAKA via aw)
|
||||
|
||||
MAPREDUCE-5945. Update the description of GenericOptionsParser -jt
|
||||
option (Akira AJISAKA via aw)
|
||||
|
||||
Release 2.5.1 - 2014-09-05
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -308,7 +308,7 @@ public class TestPipeApplication {
|
|||
assertTrue(out.toString().contains(
|
||||
"-fs <local|namenode:port> specify a namenode"));
|
||||
assertTrue(out.toString().contains(
|
||||
"-jt <local|jobtracker:port> specify a job tracker"));
|
||||
"-jt <local|ResourceManager:port> specify a ResourceManager"));
|
||||
assertTrue(out
|
||||
.toString()
|
||||
.contains(
|
||||
|
|
Loading…
Reference in New Issue