MAPREDUCE-6605. Fix typos mapreduce.map.skip.proc.count.autoincr and mapreduce.reduce.skip.proc.count.autoincr in mapred-default.xml. Contributed by Kai Sasaki.
This commit is contained in:
parent
b41a7e89d1
commit
f5c8c857be
@ -691,6 +691,10 @@ Release 2.8.0 - UNRELEASED
|
|||||||
|
|
||||||
MAPREDUCE-6601. Fix typo in Job#setUseNewAPI. (Kai Sasaki via aajisaka)
|
MAPREDUCE-6601. Fix typo in Job#setUseNewAPI. (Kai Sasaki via aajisaka)
|
||||||
|
|
||||||
|
MAPREDUCE-6605. Fix typos mapreduce.map.skip.proc.count.autoincr and
|
||||||
|
mapreduce.reduce.skip.proc.count.autoincr in mapred-default.xml.
|
||||||
|
(Kai Sasaki via aajisaka)
|
||||||
|
|
||||||
Release 2.7.3 - UNRELEASED
|
Release 2.7.3 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
@ -911,6 +911,18 @@
|
|||||||
</description>
|
</description>
|
||||||
</property>
|
</property>
|
||||||
|
|
||||||
|
<property>
|
||||||
|
<name>mapreduce.map.skip.proc-count.auto-incr</name>
|
||||||
|
<value>true</value>
|
||||||
|
<description>The flag which if set to true,
|
||||||
|
SkipBadRecords.COUNTER_MAP_PROCESSED_RECORDS is incremented by
|
||||||
|
MapRunner after invoking the map function. This value must be set
|
||||||
|
to false for applications which process the records asynchronously
|
||||||
|
or buffer the input records. For example streaming. In such cases
|
||||||
|
applications should increment this counter on their own.
|
||||||
|
</description>
|
||||||
|
</property>
|
||||||
|
|
||||||
<property>
|
<property>
|
||||||
<name>mapreduce.reduce.skip.maxgroups</name>
|
<name>mapreduce.reduce.skip.maxgroups</name>
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
@ -926,6 +938,18 @@
|
|||||||
</description>
|
</description>
|
||||||
</property>
|
</property>
|
||||||
|
|
||||||
|
<property>
|
||||||
|
<name>mapreduce.reduce.skip.proc-count.auto-incr</name>
|
||||||
|
<value>true</value>
|
||||||
|
<description>The flag which if set to true.
|
||||||
|
SkipBadRecords.COUNTER_REDUCE_PROCESSED_GROUPS is incremented by framework
|
||||||
|
after invoking the reduce function. This value must be set to false for
|
||||||
|
applications which process the records asynchronously or buffer the input
|
||||||
|
records. For example streaming. In such cases applications should increment
|
||||||
|
this counter on their own.
|
||||||
|
</description>
|
||||||
|
</property>
|
||||||
|
|
||||||
<property>
|
<property>
|
||||||
<name>mapreduce.ifile.readahead</name>
|
<name>mapreduce.ifile.readahead</name>
|
||||||
<value>true</value>
|
<value>true</value>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user