-
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
Modify DB API for efficient large object support #45
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…fixes a number of scalability problems.
1) Add Makefile.download-db-libs, which downloads + unpacks all of the dependencies. 2) Fix build.xml so that downloaded libraries don't break ant doc 3) Add dbcompile-all target that builds all of the client libraries at once.
ghost
pushed a commit
that referenced
this pull request
Nov 15, 2011
gh-45 Modify DB API for efficient large object support (sears)
jaricftw
pushed a commit
to jaricftw/YCSB
that referenced
this pull request
Jul 19, 2016
brianfrankcoopergh-45 Modify DB API for efficient large object support (sears)
jaricftw
pushed a commit
to jaricftw/YCSB
that referenced
this pull request
Jul 19, 2016
brianfrankcoopergh-44 Constant occupancy workload (sears) brianfrankcoopergh-45 Modify DB API for efficient large object support (sears)
jaricftw
pushed a commit
to jaricftw/YCSB
that referenced
this pull request
Jul 19, 2016
brianfrankcoopergh-45 Modify DB API for efficient large object support (sears)
jaricftw
pushed a commit
to jaricftw/YCSB
that referenced
this pull request
Jul 19, 2016
brianfrankcoopergh-44 Constant occupancy workload (sears) brianfrankcoopergh-45 Modify DB API for efficient large object support (sears)
hse-project
pushed a commit
to hse-project/hse-ycsb
that referenced
this pull request
Apr 17, 2020
…ong-patch to hse-0.17.0 * commit 'e9210f0c0fc6f917331c1fd93724af02e2dfb55a': revert long variable conversion
bhaveshvasandani
pushed a commit
to bhaveshvasandani/hse-ycsb
that referenced
this pull request
Aug 10, 2021
Merge in HSE/hse-ycsb from updates/NFSE-4888-doc-deps to v0.17.0-hse * commit '2b0b50bf89962dd728bd8cd13d0597ddf0fe394b': Add code blocks with lang ids Fix typo Fix typo More dep and other details. Remove redundant doc file. Document dependencies. Minor cleanup.
This pull request was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This branch makes a change to the DB API. It changes things so that fields (but not fieldnames or keys) are represented using a new ByteIterator type. This allows YCSB to drive systems that are designed to stream large reads and writes. I looked into using more standard things like ByteBuffer. Unfortunately, they're all final, which means that drivers can't extend them, so there is no good generic way to add streaming to arbitrary databases.
The rest of the commits in this pull request are the two pull requests I sent yesterday before I figured out the branching thing. Sorry about that.