From 7ccb0e06012f367429bea6f99c8ee57f23391401 Mon Sep 17 00:00:00 2001 From: Tsuyoshi Ozawa Date: Wed, 17 Feb 2016 14:13:31 +0900 Subject: [PATCH] MAPREDUCE-6341. addendum patch to fix typos. Contributed by John Michael Luy. (cherry picked from commit 453e7e0d1091cf795152c8992c6c5cbc772d80d6) --- .../src/site/markdown/MapReduceTutorial.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/site/markdown/MapReduceTutorial.md b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/site/markdown/MapReduceTutorial.md index a035e963bba..8271e7e90ae 100644 --- a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/site/markdown/MapReduceTutorial.md +++ b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/site/markdown/MapReduceTutorial.md @@ -319,7 +319,7 @@ Thus the output of the job is: < Goodbye, 1> < Hadoop, 2> < Hello, 2> - < World, 2>` + < World, 2> The `main` method specifies various facets of the job, such as the input/output paths (passed via the command line), key/value types, input/output formats etc., in the `Job`. It then calls the `job.waitForCompletion` to submit the job and monitor its progress. @@ -765,7 +765,7 @@ RecordWriter implementations write the job outputs to the `FileSystem`. Users submit jobs to Queues. Queues, as collection of jobs, allow the system to provide specific functionality. For example, queues use ACLs to control which users who can submit jobs to them. Queues are expected to be primarily used by Hadoop Schedulers. -Hadoop comes configured with a single mandatory queue, called 'default'. Queue names are defined in the `mapreduce.job.queuename`\> property of the Hadoop site configuration. Some job schedulers, such as the +Hadoop comes configured with a single mandatory queue, called 'default'. Queue names are defined in the `mapreduce.job.queuename` property of the Hadoop site configuration. Some job schedulers, such as the [Capacity Scheduler](../../hadoop-yarn/hadoop-yarn-site/CapacityScheduler.html), support multiple queues. @@ -799,7 +799,7 @@ The files/archives can be distributed by setting the property `mapreduce.job.cac and [Job.setCacheFiles(URI[])](../../api/org/apache/hadoop/mapreduce/Job.html)/ [Job.setCacheArchives(URI[])](../../api/org/apache/hadoop/mapreduce/Job.html) -where URI is of the form `hdfs://host:port/absolute-path\#link-name`. In Streaming, the files can be distributed through command line option `-cacheFile/-cacheArchive`. +where URI is of the form `hdfs://host:port/absolute-path#link-name`. In Streaming, the files can be distributed through command line option `-cacheFile/-cacheArchive`. The `DistributedCache` can also be used as a rudimentary software distribution mechanism for use in the map and/or reduce tasks. It can be used to distribute both jars and native libraries. The [Job.addArchiveToClassPath(Path)](../../api/org/apache/hadoop/mapreduce/Job.html) or