-
Notifications
You must be signed in to change notification settings - Fork 2.3k
cleanup code for HBase client #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
Okay, please go ahead. |
Merged
allanbank
pushed a commit
that referenced
this issue
Nov 4, 2015
Add a new and optional measurement type called "RAW" which outputs every dat apoint of a run.
jaricftw
pushed a commit
to jaricftw/YCSB
that referenced
this issue
Jul 19, 2016
jaricftw
pushed a commit
to jaricftw/YCSB
that referenced
this issue
Jul 19, 2016
Add a new and optional measurement type called "RAW" which outputs every dat apoint of a run.
jaricftw
pushed a commit
to jaricftw/YCSB
that referenced
this issue
Jul 19, 2016
jaricftw
pushed a commit
to jaricftw/YCSB
that referenced
this issue
Jul 19, 2016
Add a new and optional measurement type called "RAW" which outputs every dat apoint of a run.
qadahtm
pushed a commit
to qadahtm/YCSB
that referenced
this issue
Dec 1, 2016
…bleswap Fix variable swap bug so that ClosedEconomyWorkload only moves money from higher-numbered accounts/keys to lower-numbered accounts/keys
zyguan
pushed a commit
to zyguan/ycsb
that referenced
this issue
Sep 21, 2020
Yugabyte support in YCSB.
Daniel-B-Smith
pushed a commit
to Daniel-B-Smith/YCSB
that referenced
this issue
Aug 17, 2021
[core] Add jaxb XML bindings to pom.xml. These are no longer include…
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We got a bug report from Tatsuya Kawano on the HBase list. He points out that the last few inserts done on HBase are not flushed, without some explicit flushing code. His suggestion for the cleanup function is below. The fix looks correct to me and we should adopt it.
public void cleanup() throws DBException {
try {
if (_hTable != null) {
_hTable.flushCommits();
}
} catch (IOException e) {
throw new DBException(e);
}
}
The text was updated successfully, but these errors were encountered: