MAPREDUCE-5906. Inconsistent configuration in property "mapreduce.reduce.shuffle.input.buffer.percent" (Akira AJISAKA via aw)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1618008 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a43fd59ba3
commit
d171c87a7a
|
@ -25,6 +25,9 @@ Release 2.6.0 - UNRELEASED
|
|||
MAPREDUCE-4791. Javadoc for KeyValueTextInputFormat should include default
|
||||
separator and how to change it (Akira AJISAKA via aw)
|
||||
|
||||
MAPREDUCE-5906. Inconsistent configuration in property
|
||||
"mapreduce.reduce.shuffle.input.buffer.percent" (Akira AJISAKA via aw)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
|
@ -260,6 +260,7 @@ public interface MRJobConfig {
|
|||
public static final String REDUCE_MEMORY_TOTAL_BYTES = "mapreduce.reduce.memory.totalbytes";
|
||||
|
||||
public static final String SHUFFLE_INPUT_BUFFER_PERCENT = "mapreduce.reduce.shuffle.input.buffer.percent";
|
||||
public static final float DEFAULT_SHUFFLE_INPUT_BUFFER_PERCENT = 0.70f;
|
||||
|
||||
public static final String SHUFFLE_MEMORY_LIMIT_PERCENT
|
||||
= "mapreduce.reduce.shuffle.memory.limit.percent";
|
||||
|
|
|
@ -156,7 +156,8 @@ public class MergeManagerImpl<K, V> implements MergeManager<K, V> {
|
|||
this.rfs = ((LocalFileSystem)localFS).getRaw();
|
||||
|
||||
final float maxInMemCopyUse =
|
||||
jobConf.getFloat(MRJobConfig.SHUFFLE_INPUT_BUFFER_PERCENT, 0.90f);
|
||||
jobConf.getFloat(MRJobConfig.SHUFFLE_INPUT_BUFFER_PERCENT,
|
||||
MRJobConfig.DEFAULT_SHUFFLE_INPUT_BUFFER_PERCENT);
|
||||
if (maxInMemCopyUse > 1.0 || maxInMemCopyUse < 0.0) {
|
||||
throw new IllegalArgumentException("Invalid value for " +
|
||||
MRJobConfig.SHUFFLE_INPUT_BUFFER_PERCENT + ": " +
|
||||
|
|
Loading…
Reference in New Issue