MAPREDUCE-3242. Trunk compilation broken with bad interaction from MAPREDUCE-3070 and MAPREDUCE-3239. (mahadev) - Merging r1187587 from trunk
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1187589 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
101dafff16
commit
abae89ed32
|
@ -1670,6 +1670,9 @@ Release 0.23.0 - Unreleased
|
||||||
MAPREDUCE-3070. Fix NodeManager to use ephemeral ports by default.
|
MAPREDUCE-3070. Fix NodeManager to use ephemeral ports by default.
|
||||||
(Devaraj K via acmurthy)
|
(Devaraj K via acmurthy)
|
||||||
|
|
||||||
|
MAPREDUCE-3242. Trunk compilation broken with bad interaction from
|
||||||
|
MAPREDUCE-3070 and MAPREDUCE-3239. (mahadev)
|
||||||
|
|
||||||
Release 0.22.0 - Unreleased
|
Release 0.22.0 - Unreleased
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -227,7 +227,9 @@ public class YarnConfiguration extends Configuration {
|
||||||
|
|
||||||
/** address of node manager IPC.*/
|
/** address of node manager IPC.*/
|
||||||
public static final String NM_ADDRESS = NM_PREFIX + "address";
|
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.*/
|
/** who will execute(launch) the containers.*/
|
||||||
public static final String NM_CONTAINER_EXECUTOR =
|
public static final String NM_CONTAINER_EXECUTOR =
|
||||||
|
|
Loading…
Reference in New Issue