MemstoreFlusher error message doesnt include exception!
-------------------------------------------------------
Key: HBASE-3608
URL: https://issues.apache.org/jira/browse/HBASE-3608
Project: HBase
Issue Type: Bug
Reporter: ryan rawson
Assignee: ryan rawson
Fix For: 0.90.2, 0.92.0
The log message in MemstoreFlusher doesn't contain the excception which caused
it (ARGH).
Patch is like:
@@ -239,7 +239,7 @@ class MemStoreFlusher extends Thread implements
FlushRequester {
} catch (ConcurrentModificationException ex) {
continue;
} catch (Exception ex) {
- LOG.error("Cache flusher failed for entry " + fqe);
+ LOG.error("Cache flusher failed for entry " + fqe, ex);
if (!server.checkFileSystem()) {
break;
}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira