MAPREDUCE-4695. Fix LocalRunner on trunk after MAPREDUCE-3223 broke it. Contributed by Harsh J. (harsh)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1392446 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
57807d50bf
commit
7137503eb7
|
@ -135,6 +135,9 @@ Trunk (Unreleased)
|
||||||
MAPREDUCE-4678. Running the Pentomino example with defaults throws
|
MAPREDUCE-4678. Running the Pentomino example with defaults throws
|
||||||
java.lang.NegativeArraySizeException (Chris McConnell via harsh)
|
java.lang.NegativeArraySizeException (Chris McConnell via harsh)
|
||||||
|
|
||||||
|
MAPREDUCE-4695. Fix LocalRunner on trunk after MAPREDUCE-3223 broke it
|
||||||
|
(harsh)
|
||||||
|
|
||||||
Release 2.0.3-alpha - Unreleased
|
Release 2.0.3-alpha - Unreleased
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -643,6 +643,17 @@
|
||||||
</description>
|
</description>
|
||||||
</property>
|
</property>
|
||||||
|
|
||||||
|
<property>
|
||||||
|
<name>mapreduce.cluster.local.dir</name>
|
||||||
|
<value>${hadoop.tmp.dir}/mapred/local</value>
|
||||||
|
<description>
|
||||||
|
The local directory where MapReduce stores intermediate
|
||||||
|
data files. May be a comma-separated list of
|
||||||
|
directories on different devices in order to spread disk i/o.
|
||||||
|
Directories that do not exist are ignored.
|
||||||
|
</description>
|
||||||
|
</property>
|
||||||
|
|
||||||
<property>
|
<property>
|
||||||
<name>mapreduce.cluster.acls.enabled</name>
|
<name>mapreduce.cluster.acls.enabled</name>
|
||||||
<value>false</value>
|
<value>false</value>
|
||||||
|
|
Loading…
Reference in New Issue