MAPREDUCE-6087. Fixed wrong config name of MRJobConfig#MR_CLIENT_TO_AM_IPC_MAX_RETRIES_ON_TIMEOUTS. Contributed by Akira AJISAKA
This commit is contained in:
parent
5391919b09
commit
5f16c98ad6
|
@ -537,6 +537,8 @@ Deprecated Properties
|
||||||
|user.name | mapreduce.job.user.name
|
|user.name | mapreduce.job.user.name
|
||||||
*---+---+
|
*---+---+
|
||||||
|webinterface.private.actions | mapreduce.jobtracker.webinterface.trusted
|
|webinterface.private.actions | mapreduce.jobtracker.webinterface.trusted
|
||||||
|
*---+---+
|
||||||
|
|yarn.app.mapreduce.yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts | yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts
|
||||||
*---+---+
|
*---+---+
|
||||||
|
|
||||||
The following table lists additional changes to some configuration properties:
|
The following table lists additional changes to some configuration properties:
|
||||||
|
|
|
@ -390,6 +390,10 @@ Release 2.6.0 - UNRELEASED
|
||||||
MAPREDUCE-5945. Update the description of GenericOptionsParser -jt
|
MAPREDUCE-5945. Update the description of GenericOptionsParser -jt
|
||||||
option (Akira AJISAKA via aw)
|
option (Akira AJISAKA via aw)
|
||||||
|
|
||||||
|
MAPREDUCE-6087. Fixed wrong config name of
|
||||||
|
MRJobConfig#MR_CLIENT_TO_AM_IPC_MAX_RETRIES_ON_TIMEOUTS. Contributed by
|
||||||
|
Akira AJISAKA. (Akira AJISAKA via jianhe)
|
||||||
|
|
||||||
Release 2.5.1 - 2014-09-05
|
Release 2.5.1 - 2014-09-05
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -392,7 +392,7 @@ public interface MRJobConfig {
|
||||||
* reconnecting to the RM to fetch Application Status.
|
* reconnecting to the RM to fetch Application Status.
|
||||||
*/
|
*/
|
||||||
public static final String MR_CLIENT_TO_AM_IPC_MAX_RETRIES_ON_TIMEOUTS =
|
public static final String MR_CLIENT_TO_AM_IPC_MAX_RETRIES_ON_TIMEOUTS =
|
||||||
MR_PREFIX + "yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts";
|
MR_PREFIX + "client-am.ipc.max-retries-on-timeouts";
|
||||||
public static final int
|
public static final int
|
||||||
DEFAULT_MR_CLIENT_TO_AM_IPC_MAX_RETRIES_ON_TIMEOUTS = 3;
|
DEFAULT_MR_CLIENT_TO_AM_IPC_MAX_RETRIES_ON_TIMEOUTS = 3;
|
||||||
|
|
||||||
|
|
|
@ -180,6 +180,8 @@ public class ConfigUtil {
|
||||||
TTConfig.TT_LOCAL_CACHE_SIZE),
|
TTConfig.TT_LOCAL_CACHE_SIZE),
|
||||||
new DeprecationDelta("tasktracker.contention.tracking",
|
new DeprecationDelta("tasktracker.contention.tracking",
|
||||||
TTConfig.TT_CONTENTION_TRACKING),
|
TTConfig.TT_CONTENTION_TRACKING),
|
||||||
|
new DeprecationDelta("yarn.app.mapreduce.yarn.app.mapreduce.client-am.ipc.max-retries-on-timeouts",
|
||||||
|
MRJobConfig.MR_CLIENT_TO_AM_IPC_MAX_RETRIES_ON_TIMEOUTS),
|
||||||
new DeprecationDelta("job.end.notification.url",
|
new DeprecationDelta("job.end.notification.url",
|
||||||
MRJobConfig.MR_JOB_END_NOTIFICATION_URL),
|
MRJobConfig.MR_JOB_END_NOTIFICATION_URL),
|
||||||
new DeprecationDelta("job.end.retry.attempts",
|
new DeprecationDelta("job.end.retry.attempts",
|
||||||
|
|
Loading…
Reference in New Issue