-
Notifications
You must be signed in to change notification settings - Fork 989
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
Bucket cleanup #4093
Merged
Merged
Bucket cleanup #4093
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
dmkozh
reviewed
Dec 14, 2023
dmkozh
reviewed
Dec 14, 2023
5fe427f
to
a6c4801
Compare
marta-lokhova
requested changes
Jan 6, 2024
32784b6
to
888b313
Compare
888b313
to
2d5751c
Compare
marta-lokhova
approved these changes
Feb 14, 2024
r+ 4f0789d |
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.
Description
Resolves #4031
This PR includes cleanups and hardening of
Bucket
related code.loadPoolShareTrustlinesByAccountAndAsset
: Extended a test to make sure this function does not return outdated entries. This was working properly, but did not have an explicit test. I've also added an explicitseenKeys
set instead of relying on the fact thatunordered_map::emplace
will not update a key if it already exists for more defensive programming. Finally, there was an edge case where if aBucket
only contained offers and did not contain aMETAENTRY
, the scan would return early. This should never happen in practice, but it has been fixed.ifstream
and ran several experiments such as disabling stream buffering. I've concluded thatifstream
with buffering is still the optimal file IO interface for BucketsDB. I've also checked that we're handling EOF and bad bits properly, and could not find any dependencies on out-of-spec behavior. The only code change was a minor scoping issue on a tracy metric.Checklist
clang-format
v8.0.0 (viamake format
or the Visual Studio extension)