-
Notifications
You must be signed in to change notification settings - Fork 459
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
feat: buffered reading of transaction logs #1549
Merged
+432
−35
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
1d70da0
initial buffered log reading
eeroel dbd0bc4
another attempt
eeroel cbf4d10
limit reads to max version
eeroel fa1b641
clean up
eeroel 834161c
attempt to refactor
eeroel e15e37a
some revisions
eeroel 0c3d28e
handle stream length explicitly
eeroel e38d83e
fix conversion error handling, small tweaks
eeroel a402654
remove an unwrap
eeroel 83d6881
initial config, test
eeroel 8b30341
refactor test
eeroel 741f137
expose to python
eeroel 6381c90
clean docs
eeroel 8bade70
expose to python
eeroel 69467ae
end of stream handling, more testing
eeroel fc8e990
add test, limit for log buffer size
eeroel 96fe14f
list files to get latest version
eeroel 3e97d30
list from current
eeroel d6da3bf
fix initializer in bench code
eeroel e7e120d
use listing for get_latest_version
eeroel da3dbf1
clean up
eeroel 32db9ec
some revisions
eeroel e22a687
use dynamic data for test
eeroel 8549127
some revisions
eeroel 7f7ee6f
update test file name
eeroel eb386c0
update python doc
eeroel fb3c8dd
format
eeroel 987e2a0
satisfy linter
eeroel e57e020
more formatting
eeroel 5dfdef4
rename builder method
eeroel 41cfafb
yet more formatting
eeroel 59e97cd
Merge branch 'main' into feat/buffered_log_reading
wjones127 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
end of stream handling, more testing
- Loading branch information
commit 69467ae72b921621d9f962b487bf3027d09ef5fa
There are no files selected for viewing
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@rtyler I refactored this max_version handling a bit so it's clearer. Here I made explicit the behavior that's on
main
currently: i.e. the table will be updated to the latest version if max_version is smaller or equal to the current version.