Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
3.0.0, 4.0.0
Description
if (LOG.isTraceEnabled()) { if (numRows == cntr) { cntr = logEveryNRows == 0 ? cntr * 10 : numRows + logEveryNRows; if (cntr < 0 || numRows < 0) { cntr = 0; numRows = 1; } LOG.info(toString() + ": records written - " + numRows); } } ... if (LOG.isTraceEnabled()) { LOG.info(toString() + ": records written - " + numRows); }
There are logging guards here checking for TRACE level debugging but the logging is actually INFO. This is important logging for detecting data skew. Please change guards to check for INFO... or I would prefer that the guards are removed altogether since it's very rare that a service is running with only WARN level logging.
Attachments
Attachments
Issue Links
- is related to
-
HIVE-10078 Optionally allow logging of records processed in fixed intervals
- Closed