Merge -r 1478421:1478422 from trunk to branch-2. Fixes: MAPREDUCE-5036. Default shuffle handler port should not be 8080. Contributed by Sandy Ryza.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1478424 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
bd198d7dfe
commit
0411165008
|
@ -56,6 +56,9 @@ Release 2.0.5-beta - UNRELEASED
|
|||
MAPREDUCE-5145. Changed default max-attempts to be more than one for MR jobs
|
||||
inline with YARN. (Zhijie Shen via vinodkv)
|
||||
|
||||
MAPREDUCE-5036. Default shuffle handler port should not be 8080.
|
||||
(Sandy Ryza via tomwhite)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
MAPREDUCE-4974. Optimising the LineRecordReader initialize() method
|
||||
|
|
|
@ -1171,7 +1171,7 @@
|
|||
|
||||
<property>
|
||||
<name>mapreduce.shuffle.port</name>
|
||||
<value>8080</value>
|
||||
<value>11000</value>
|
||||
<description>Default port that the ShuffleHandler will run on. ShuffleHandler
|
||||
is a service run at the NodeManager to facilitate transfers of intermediate
|
||||
Map outputs to requesting Reducers.
|
||||
|
|
|
@ -153,7 +153,7 @@ public class ShuffleHandler extends AbstractService
|
|||
new JobTokenSecretManager();
|
||||
|
||||
public static final String SHUFFLE_PORT_CONFIG_KEY = "mapreduce.shuffle.port";
|
||||
public static final int DEFAULT_SHUFFLE_PORT = 8080;
|
||||
public static final int DEFAULT_SHUFFLE_PORT = 11000;
|
||||
|
||||
public static final String SUFFLE_SSL_FILE_BUFFER_SIZE_KEY =
|
||||
"mapreduce.shuffle.ssl.file.buffer.size";
|
||||
|
|
Loading…
Reference in New Issue