-
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
Tag blobs to help diagnose which blobs are not recycled #810
Labels
good first issue
Good for newcomers
Comments
aeyakovenko
changed the title
Tag blobs rblobs are not recycled
Tag blobs to help diagnose which blobs are not recycled
Aug 1, 2018
Merged
vkomenda
pushed a commit
to vkomenda/solana
that referenced
this issue
Aug 29, 2021
Bumps [eslint](https://github.com/eslint/eslint) from 7.12.1 to 7.13.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md) - [Commits](eslint/eslint@v7.12.1...v7.13.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
joncinque
pushed a commit
to joncinque/solana
that referenced
this issue
Apr 19, 2024
…a-labs#810) Instead of sending accounts individually, send batches of accounts for background hashing. Before this change we used to send accounts individually, and the background thread used to do: loop { let account = receiver.recv(); account.hash(); // go back to sleep in recv() } Because most accounts are small and hashing them is very fast, the background thread used to sleep a lot, and required many syscalls from the sender in order to be woken up. Batching reduces the number of syscalls.
jeffwashington
pushed a commit
to jeffwashington/solana
that referenced
this issue
Apr 19, 2024
…a-labs#810) Instead of sending accounts individually, send batches of accounts for background hashing. Before this change we used to send accounts individually, and the background thread used to do: loop { let account = receiver.recv(); account.hash(); // go back to sleep in recv() } Because most accounts are small and hashing them is very fast, the background thread used to sleep a lot, and required many syscalls from the sender in order to be woken up. Batching reduces the number of syscalls.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add a tag for blobs to help identify which blobs are not recycled as expected.
The text was updated successfully, but these errors were encountered: