-
Notifications
You must be signed in to change notification settings - Fork 9.2k
HDDS-1253 #593
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
Merged
Merged
HDDS-1253 #593
Conversation
This file contains hidden or 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
|
💔 -1 overall
This message was automatically generated. |
Contributor
|
@xiaoyuyao thanks for taking care of this. +1 |
shanthoosh
pushed a commit
to shanthoosh/hadoop
that referenced
this pull request
Oct 15, 2019
Currently, Table API only has blocking/sync methods which limit the throughput of remote tables. This change adds async methods to the API to enable high throughput remote table accesses through usage of async IO. The new methods are added to ReadableTable and ReadWriteTable. A high level summary of the change is below: - added async methods to table ReadableTable and ReadWriteTable. - added async methods to TableRead/WriteFunction - CompletableFuture is used for the async abstraction - CachingTable are updated to support async methods - added default impls for sync methods backed by async in table functions - added helper class, Throttler/AsyncHelper to ease table development - fixed existing test cases with table implementations - added more thorough unit tests to RemoteTable CRUD methods Additionally remove explicit check of config entries for remote table in TestTableDescriptorsProvider since there is already a test case on RemoteTableDescriptor. Author: Peng Du <[email protected]> Reviewers: Jagadish<[email protected]>, Wei <[email protected]> Closes apache#593 from pdu-mn1/async-table-api-futures
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.
No description provided.