Repository: hadoop Updated Branches: refs/heads/branch-2 063f2132e -> ac333155f
MAPREDUCE-6909. LocalJobRunner fails when run on a node from multiple users. Contributed by Jason Lowe. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/ac333155 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/ac333155 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/ac333155 Branch: refs/heads/branch-2 Commit: ac333155fbcbbc50477869fb29c8da124e5968c0 Parents: 063f213 Author: Akira Ajisaka <[email protected]> Authored: Tue Jul 4 15:25:33 2017 +0900 Committer: Akira Ajisaka <[email protected]> Committed: Tue Jul 4 15:25:33 2017 +0900 ---------------------------------------------------------------------- .../src/main/resources/mapred-default.xml | 32 ++++++++++++++++++++ 1 file changed, 32 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/ac333155/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 1bbebbb..603a31a 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 @@ -63,6 +63,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 @@ -70,6 +79,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]
