YARN-4544. All the log messages about rolling monitoring interval are shown with WARN level. Contributed by Takashi Ohnishi.
This commit is contained in:
parent
bac798abfc
commit
52b77577c4
|
@ -678,6 +678,9 @@ Release 2.8.0 - UNRELEASED
|
||||||
|
|
||||||
YARN-4098. Document ApplicationPriority feature. (Rohith Sharma K S via jianhe)
|
YARN-4098. Document ApplicationPriority feature. (Rohith Sharma K S via jianhe)
|
||||||
|
|
||||||
|
YARN-4544. All the log messages about rolling monitoring interval are
|
||||||
|
shown with WARN level. (Takashi Ohnishi via aajisaka)
|
||||||
|
|
||||||
OPTIMIZATIONS
|
OPTIMIZATIONS
|
||||||
|
|
||||||
YARN-3339. TestDockerContainerExecutor should pull a single image and not
|
YARN-3339. TestDockerContainerExecutor should pull a single image and not
|
||||||
|
|
|
@ -189,12 +189,12 @@ public class AppLogAggregatorImpl implements AppLogAggregator {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (configuredRollingMonitorInterval <= 0) {
|
if (configuredRollingMonitorInterval <= 0) {
|
||||||
LOG.warn("rollingMonitorInterval is set as "
|
LOG.info("rollingMonitorInterval is set as "
|
||||||
+ configuredRollingMonitorInterval + ". "
|
+ configuredRollingMonitorInterval + ". "
|
||||||
+ "The log rolling mornitoring interval is disabled. "
|
+ "The log rolling monitoring interval is disabled. "
|
||||||
+ "The logs will be aggregated after this application is finished.");
|
+ "The logs will be aggregated after this application is finished.");
|
||||||
} else {
|
} else {
|
||||||
LOG.warn("rollingMonitorInterval is set as "
|
LOG.info("rollingMonitorInterval is set as "
|
||||||
+ configuredRollingMonitorInterval + ". "
|
+ configuredRollingMonitorInterval + ". "
|
||||||
+ "The logs will be aggregated every "
|
+ "The logs will be aggregated every "
|
||||||
+ configuredRollingMonitorInterval + " seconds");
|
+ configuredRollingMonitorInterval + " seconds");
|
||||||
|
|
Loading…
Reference in New Issue