Repository: hadoop Updated Branches: refs/heads/branch-2.8 9f9d554ed -> 71f49406f
MAPREDUCE-6909. LocalJobRunner fails when run on a node from multiple users. Contributed by Jason Lowe. (cherry picked from commit ac333155fbcbbc50477869fb29c8da124e5968c0) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/71f49406 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/71f49406 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/71f49406 Branch: refs/heads/branch-2.8 Commit: 71f49406f291038ef5772f216001c9e5abb14c8d Parents: 9f9d554 Author: Akira Ajisaka <[email protected]> Authored: Tue Jul 4 15:25:33 2017 +0900 Committer: Akira Ajisaka <[email protected]> Committed: Tue Jul 4 15:26:46 2017 +0900 ---------------------------------------------------------------------- .../src/main/resources/mapred-default.xml | 32 ++++++++++++++++++++ 1 file changed, 32 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/71f49406/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]
