Revert "MAPREDUCE-7453. Container logs are missing when yarn.app.container.log.filesize is set to default value 0. (#6042) Contributed by Chenyu Zheng." (#6103)
This reverts commit ab2bc90e09
.
This commit is contained in:
parent
c16484ffb2
commit
512e39e89d
@ -466,8 +466,7 @@ public static long getTaskLogLength(JobConf conf) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static long getTaskLogLimitBytes(Configuration conf) {
|
public static long getTaskLogLimitBytes(Configuration conf) {
|
||||||
return conf.getLong(JobContext.TASK_USERLOG_LIMIT, JobContext.DEFAULT_TASK_USERLOG_LIMIT) *
|
return conf.getLong(JobContext.TASK_USERLOG_LIMIT, 0) * 1024;
|
||||||
1024;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -410,8 +410,6 @@ public interface MRJobConfig {
|
|||||||
|
|
||||||
public static final String TASK_USERLOG_LIMIT = "mapreduce.task.userlog.limit.kb";
|
public static final String TASK_USERLOG_LIMIT = "mapreduce.task.userlog.limit.kb";
|
||||||
|
|
||||||
public static final int DEFAULT_TASK_USERLOG_LIMIT = 10240;
|
|
||||||
|
|
||||||
public static final String MAP_SORT_SPILL_PERCENT = "mapreduce.map.sort.spill.percent";
|
public static final String MAP_SORT_SPILL_PERCENT = "mapreduce.map.sort.spill.percent";
|
||||||
|
|
||||||
public static final String MAP_INPUT_FILE = "mapreduce.map.input.file";
|
public static final String MAP_INPUT_FILE = "mapreduce.map.input.file";
|
||||||
@ -760,11 +758,11 @@ public interface MRJobConfig {
|
|||||||
|
|
||||||
public static final String MR_AM_LOG_KB =
|
public static final String MR_AM_LOG_KB =
|
||||||
MR_AM_PREFIX + "container.log.limit.kb";
|
MR_AM_PREFIX + "container.log.limit.kb";
|
||||||
public static final int DEFAULT_MR_AM_LOG_KB = 10240;
|
public static final int DEFAULT_MR_AM_LOG_KB = 0; // don't roll
|
||||||
|
|
||||||
public static final String MR_AM_LOG_BACKUPS =
|
public static final String MR_AM_LOG_BACKUPS =
|
||||||
MR_AM_PREFIX + "container.log.backups";
|
MR_AM_PREFIX + "container.log.backups";
|
||||||
public static final int DEFAULT_MR_AM_LOG_BACKUPS = 0; // don't roll
|
public static final int DEFAULT_MR_AM_LOG_BACKUPS = 0;
|
||||||
|
|
||||||
/**The number of splits when reporting progress in MR*/
|
/**The number of splits when reporting progress in MR*/
|
||||||
public static final String MR_AM_NUM_PROGRESS_SPLITS =
|
public static final String MR_AM_NUM_PROGRESS_SPLITS =
|
||||||
|
@ -823,15 +823,16 @@
|
|||||||
|
|
||||||
<property>
|
<property>
|
||||||
<name>mapreduce.task.userlog.limit.kb</name>
|
<name>mapreduce.task.userlog.limit.kb</name>
|
||||||
<value>10240</value>
|
<value>0</value>
|
||||||
<description>The maximum size of user-logs of each task in KB.
|
<description>The maximum size of user-logs of each task in KB. 0 disables the cap.
|
||||||
</description>
|
</description>
|
||||||
</property>
|
</property>
|
||||||
|
|
||||||
<property>
|
<property>
|
||||||
<name>yarn.app.mapreduce.am.container.log.limit.kb</name>
|
<name>yarn.app.mapreduce.am.container.log.limit.kb</name>
|
||||||
<value>10240</value>
|
<value>0</value>
|
||||||
<description>The maximum size of the MRAppMaster attempt container logs in KB.
|
<description>The maximum size of the MRAppMaster attempt container logs in KB.
|
||||||
|
0 disables the cap.
|
||||||
</description>
|
</description>
|
||||||
</property>
|
</property>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user