HBASE-3674 Treat ChecksumException as we would a ParseException splitting logs; else we replay split on every restart -- fixup for distributed log splitting
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1096842 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7437b11bec
commit
992bf057e7
|
@ -687,7 +687,7 @@ public class HLogSplitter {
|
|||
// then this problem is idempotent and retrying won't help
|
||||
if (e.getCause() != null &&
|
||||
(e.getCause() instanceof ParseException ||
|
||||
e.getCause() instanceof org.apache.hadoop.fs.ChecksumException) {
|
||||
e.getCause() instanceof org.apache.hadoop.fs.ChecksumException)) {
|
||||
LOG.warn("Parse exception " + e.getCause().toString() + " from hlog "
|
||||
+ path + ". continuing");
|
||||
return null;
|
||||
|
|
Loading…
Reference in New Issue