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/trunk@1618007 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e1f15d2cdf
commit
2d904b3fa3
|
@ -92,6 +92,9 @@ Trunk (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)
|
||||
|
||||
BUG FIXES
|
||||
|
||||
MAPREDUCE-5714. Removed forceful JVM exit in shutDownJob.
|
||||
|
|
|
@ -265,6 +265,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