Repository: hadoop Updated Branches: refs/heads/branch-2.8.2 5fe0e1fc9 -> 64e604b79
MAPREDUCE-6909. LocalJobRunner fails when run on a node from multiple users. Contributed by Jason Lowe. (cherry picked from commit ac333155fbcbbc50477869fb29c8da124e5968c0) (cherry picked from commit 71f49406f291038ef5772f216001c9e5abb14c8d) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/64e604b7 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/64e604b7 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/64e604b7 Branch: refs/heads/branch-2.8.2 Commit: 64e604b7912c3bc18326d4288716203af51de4d8 Parents: 5fe0e1f Author: Akira Ajisaka <[email protected]> Authored: Tue Jul 4 15:25:33 2017 +0900 Committer: Akira Ajisaka <[email protected]> Committed: Tue Jul 4 15:28:24 2017 +0900 ---------------------------------------------------------------------- .../src/main/resources/mapred-default.xml | 32 ++++++++++++++++++++ 1 file changed, 32 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/64e604b7/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml ---------------------------------------------------------------------- diff --git a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml index 2acc8c9..e5cd660 100644 --- a/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml +++ b/hadoop-mapreduce-project/hadoop-mapreduce-client/hadoop-mapreduce-client-core/src/main/resources/mapred-default.xml @@ -58,6 +58,15 @@ </property> <property> + <name>mapreduce.jobtracker.address</name> + <value>local</value> + <description>The host and port that the MapReduce job tracker runs + at. If "local", then jobs are run in-process as a single map + and reduce task. + </description> +</property> + +<property> <name>mapreduce.local.clientfactory.class.name</name> <value>org.apache.hadoop.mapred.LocalClientFactory</value> <description>This the client factory that is responsible for @@ -65,6 +74,29 @@ </property> <property> + <name>mapreduce.jobtracker.system.dir</name> + <value>${hadoop.tmp.dir}/mapred/system</value> + <description>The directory where MapReduce stores control files. + </description> +</property> + +<property> + <name>mapreduce.jobtracker.staging.root.dir</name> + <value>${hadoop.tmp.dir}/mapred/staging</value> + <description>The root of the staging area for users' job files + In practice, this should be the directory where users' home + directories are located (usually /user) + </description> +</property> + +<property> + <name>mapreduce.cluster.temp.dir</name> + <value>${hadoop.tmp.dir}/mapred/temp</value> + <description>A shared directory for temporary files. + </description> +</property> + +<property> <name>mapreduce.job.maps</name> <value>2</value> <description>The default number of map tasks per job. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
