HDFS-8207. Improper log message when blockreport interval compared with initial delay. Contributed by Brahma Reddy Battula and Ashish Singhi.

This commit is contained in:
Tsuyoshi Ozawa 2015-05-08 18:05:24 +09:00
parent 6232235df3
commit 888e630990
2 changed files with 6 additions and 2 deletions

View File

@ -519,6 +519,9 @@ Release 2.8.0 - UNRELEASED
HDFS-8314. Move HdfsServerConstants#IO_FILE_BUFFER_SIZE and
SMALL_BUFFER_SIZE to the users. (Li Lu via wheat9)
HDFS-8207. Improper log message when blockreport interval compared with
initial delay. (Brahma Reddy Battula and Ashish Singhi via ozawa)
OPTIMIZATIONS
HDFS-8026. Trace FSOutputSummer#writeChecksumChunks rather than

View File

@ -155,8 +155,9 @@ public DNConf(Configuration conf) {
DFS_BLOCKREPORT_INITIAL_DELAY_DEFAULT) * 1000L;
if (initBRDelay >= blockReportInterval) {
initBRDelay = 0;
DataNode.LOG.info("dfs.blockreport.initialDelay is greater than " +
"dfs.blockreport.intervalMsec." + " Setting initial delay to 0 msec:");
DataNode.LOG.info("dfs.blockreport.initialDelay is "
+ "greater than or equal to" + "dfs.blockreport.intervalMsec."
+ " Setting initial delay to 0 msec:");
}
initialBlockReportDelay = initBRDelay;