code: HRS.delete seems to ignore exceptions it shouldnt
-------------------------------------------------------
Key: HBASE-1919
URL: https://issues.apache.org/jira/browse/HBASE-1919
Project: Hadoop HBase
Issue Type: Bug
Affects Versions: 0.20.1
Reporter: ryan rawson
Fix For: 0.20.2, 0.21.0
the code is:
region.delete(delete, lid, writeToWAL);
this.hlog.sync(region.getRegionInfo().isMetaRegion());
} catch (WrongRegionException ex) {
} catch (NotServingRegionException ex) {
// ignore
} catch (Throwable t) {
throw convertThrowableToIOE(cleanup(t));
}
we ignore those 2 exceptions... weird... should not be!
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.