-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
Shrink ledger buffers #1693
Merged
Merged
Shrink ledger buffers #1693
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
rob-solana
force-pushed
the
ledger-buffer
branch
from
November 3, 2018 01:50
7e9d597
to
95bdcaa
Compare
rob-solana
changed the title
initialization of large file buffers makes tests run extremely slow, 1000x slower than necessary
shrink ledger buffers
Nov 3, 2018
rob-solana
force-pushed
the
ledger-buffer
branch
from
November 3, 2018 04:41
95bdcaa
to
879be23
Compare
vkomenda
pushed a commit
to vkomenda/solana
that referenced
this pull request
Aug 29, 2021
…solana-labs#1693) Bumps [dotenv](https://github.com/motdotla/dotenv) from 9.0.1 to 9.0.2. - [Release notes](https://github.com/motdotla/dotenv/releases) - [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md) - [Commits](motdotla/dotenv@v9.0.1...v9.0.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
CriesofCarrots
pushed a commit
to CriesofCarrots/solana
that referenced
this pull request
Jul 9, 2024
* Bump curve25519-dalek from 3.2.1 to 4.1.3 * hack spl test * ignore some spl downstream tests * use into_option * hack spl test 2 --------- Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
yihau
added a commit
to yihau/solana
that referenced
this pull request
Jul 9, 2024
This reverts commit 69a1e86.
yihau
added a commit
to yihau/solana
that referenced
this pull request
Jul 10, 2024
joncinque
added a commit
to joncinque/solana
that referenced
this pull request
Oct 28, 2024
#### Problem solana-labs#1693 introduced a breaking change between v2.0 and v2.1 of the Solana crates by bumping a dependency to a new major version, but it isn't reflected in the changelog. #### Summary of changes Add a line in the changelog about the breaking change.
joncinque
added a commit
to joncinque/solana
that referenced
this pull request
Oct 29, 2024
…olana-labs#3335) CHANGELOG: Add entry for breaking change to curve22519-dalek #### Problem solana-labs#1693 introduced a breaking change between v2.0 and v2.1 of the Solana crates by bumping a dependency to a new major version, but it isn't reflected in the changelog. #### Summary of changes Add a line in the changelog about the breaking change.
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.
Problem
large BufReader BufWriter buffers cosume a bunch of CPU for initialization, and a lot of RAM while running, especially in test runs, 1000x slower than necessary, 1000x bigger than necessary
Summary of Changes
use default buffer size for index, use BLOB_DATA_SIZE for data buffer
Fixes #