Skip to content
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

Closed
aeyakovenko opened this issue Aug 1, 2018 · 0 comments
Closed

Tag blobs to help diagnose which blobs are not recycled #810

aeyakovenko opened this issue Aug 1, 2018 · 0 comments
Labels
good first issue Good for newcomers

Comments

@aeyakovenko
Copy link
Member

aeyakovenko commented Aug 1, 2018

Add a tag for blobs to help identify which blobs are not recycled as expected.

@aeyakovenko aeyakovenko added the good first issue Good for newcomers label Aug 1, 2018
@aeyakovenko aeyakovenko changed the title Tag blobs rblobs are not recycled Tag blobs to help diagnose which blobs are not recycled Aug 1, 2018
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
Labels
good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant