We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a991be7 commit c4d5d07Copy full SHA for c4d5d07
src/main/java/com/alipay/oceanbase/hbase/OHTable.java
@@ -1526,13 +1526,7 @@ public void flushCommits() throws IOException {
1526
if (mutator == null) {
1527
return;
1528
}
1529
- try {
1530
- mutator.flush();
1531
- } catch (Exception e) {
1532
- throw new IOException("put table " + tableNameString + " error codes " + null
1533
- + " auto flush " + autoFlush + " current buffer size "
1534
- + mutator.getCurrentBufferSize(), e);
1535
- }
+ mutator.flush();
1536
1537
1538
@Override
0 commit comments