-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Mysql support #20
Mysql support #20
Conversation
Conflicts: db/mysql/src/com/yahoo/ycsb/db/MySQLClient.java
Hi Nick, I think it's better to stick to jdbc since it allows to people to try different databases with the same client. I'm closing this pull request. https://github.com/brianfrankcooper/YCSB/tree/master/db/jdbc Thanks! |
I understand your reasoning, however I think any a real-world deployment would be tuned for the specific database vendor chosen. Providing vendor-specific implementations in your benchmark tool makes for a more realistic performance evaluation. Cheers, |
* commit '6b3e388078232ca8d5179f91b356760c1015f743': Update spec file Initial support for debian packaging
…re-dependency-lrc to v0.17.0-lrc-hse * commit '660b440390038e0339268f219433e51452d1e619': update control file Merge pull request #23 in HSE/hse-ycsb from fixes/NFSE-4308-missing-jre-dependency to v0.17.0-hse Merge pull request #20 in HSE/hse-ycsb from debian to v0.17.0-hse (cherry picked from commit 70de3f94eaae6d3e985f00d77f71fbd49e8f53ba)
Hi Brian,
This patch builds a basic BigTable-like kv-store on top of MySQL. Scan is left unimplemented because I don't know how to implement such functionality efficiently. I tried to clean up my patch series but I'm too much of a git novice for the history rewriting commands. Suggestions are welcome!