-
Notifications
You must be signed in to change notification settings - Fork 161
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
Add temporary way to configure amount of data prefetched per file handle #1021
Merged
dannycjones
merged 3 commits into
awslabs:main
from
dannycjones:temporary-prefetch-size-config
Sep 18, 2024
Merged
Add temporary way to configure amount of data prefetched per file handle #1021
dannycjones
merged 3 commits into
awslabs:main
from
dannycjones:temporary-prefetch-size-config
Sep 18, 2024
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
This can be removed at any time. Signed-off-by: Daniel Carl Jones <[email protected]>
dannycjones
temporarily deployed
to
PR integration tests
September 18, 2024 08:08
— with
GitHub Actions
Inactive
dannycjones
temporarily deployed
to
PR integration tests
September 18, 2024 08:08
— with
GitHub Actions
Inactive
dannycjones
temporarily deployed
to
PR integration tests
September 18, 2024 08:08
— with
GitHub Actions
Inactive
dannycjones
temporarily deployed
to
PR integration tests
September 18, 2024 08:08
— with
GitHub Actions
Inactive
dannycjones
temporarily deployed
to
PR integration tests
September 18, 2024 08:08
— with
GitHub Actions
Inactive
dannycjones
temporarily deployed
to
PR integration tests
September 18, 2024 08:08
— with
GitHub Actions
Inactive
dannycjones
temporarily deployed
to
PR integration tests
September 18, 2024 08:08
— with
GitHub Actions
Inactive
passaro
reviewed
Sep 18, 2024
Signed-off-by: Daniel Carl Jones <[email protected]>
Signed-off-by: Daniel Carl Jones <[email protected]>
dannycjones
temporarily deployed
to
PR integration tests
September 18, 2024 13:39
— with
GitHub Actions
Inactive
dannycjones
temporarily deployed
to
PR integration tests
September 18, 2024 13:39
— with
GitHub Actions
Inactive
dannycjones
temporarily deployed
to
PR integration tests
September 18, 2024 13:39
— with
GitHub Actions
Inactive
dannycjones
temporarily deployed
to
PR integration tests
September 18, 2024 13:39
— with
GitHub Actions
Inactive
dannycjones
temporarily deployed
to
PR integration tests
September 18, 2024 13:39
— with
GitHub Actions
Inactive
dannycjones
temporarily deployed
to
PR integration tests
September 18, 2024 13:39
— with
GitHub Actions
Inactive
dannycjones
temporarily deployed
to
PR integration tests
September 18, 2024 13:39
— with
GitHub Actions
Inactive
passaro
approved these changes
Sep 18, 2024
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.
LGTM
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 of change
In some use cases (such as those in multi-tenant settings), a very large number of file handles may be opened concurrently. While the default prefetching works fine for environments with fewer open file handles, we see that Mountpoint can use far too much memory otherwise.
This change introduces a temporary way to scale down the maximum amount that Mountpoint will prefetch per file handle. Today, the default is 2GiB and the new parameter can be used to reduce that.
The end goal is to make this parameter obsolete through the work in #987 to make prefetching scale down when available memory is low.
Relevant issues: #502, #566, #630, #987
Does this change impact existing behavior?
No existing behavior is impacted. This allows a temporary way to override the prefetch window size.
When it is removed, it will not trigger any issue (so long as the root cause is solved on memory usage). We use an environment variable such that this can be removed without breaking deployments.
Does this change need a changelog entry in any of the crates?
This change does not add a changelog entry as we do not recommend using this override.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license and I agree to the terms of the Developer Certificate of Origin (DCO).