MAPREDUCE-3242. Trunk compilation broken with bad interaction from MAPREDUCE-3070 and MAPREDUCE-3239. (mahadev)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1187587 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
49ab924cb5
commit
e175574635
@ -1726,6 +1726,9 @@ Release 0.23.0 - Unreleased
|
||||
MAPREDUCE-3070. Fix NodeManager to use ephemeral ports by default.
|
||||
(Devaraj K via acmurthy)
|
||||
|
||||
MAPREDUCE-3242. Trunk compilation broken with bad interaction from
|
||||
MAPREDUCE-3070 and MAPREDUCE-3239. (mahadev)
|
||||
|
||||
Release 0.22.0 - Unreleased
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
@ -227,7 +227,9 @@ public class YarnConfiguration extends Configuration {
|
||||
|
||||
/** address of node manager IPC.*/
|
||||
public static final String NM_ADDRESS = NM_PREFIX + "address";
|
||||
public static final String DEFAULT_NM_ADDRESS = "0.0.0.0:0";
|
||||
public static final int DEFAULT_NM_PORT = 0;
|
||||
public static final String DEFAULT_NM_ADDRESS = "0.0.0.0:"
|
||||
+ DEFAULT_NM_PORT;
|
||||
|
||||
/** who will execute(launch) the containers.*/
|
||||
public static final String NM_CONTAINER_EXECUTOR =
|
||||
|
Loading…
Reference in New Issue
Block a user