-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Tweak rebuild in-flight hard limit #15324
Conversation
Vendor testing shows we should be able to get a little more performance if we further relax the hard limit which we're hitting. Authored-by: Brian Behlendorf <[email protected]> Signed-off-by: Tony Hutter <[email protected]>
I am trying to understand why would you want to wipe half of ARC for that. Do you have very small ARC or too many top-level vdevs? |
While it's definitely borderline, where we bumped up against this limit was with a pool with two top-level 50-device dRAIDs and a top-level special device mirror. That limited us to 1/12 of the ARC (1/4 ARC * 1/3 per top-level vdev). Allowing this to be bumped up a bit further speed up the rebuild by ~10%. Whether giving up that much ARC is worth it is a harder call, and I wouldn't want to change the defaults, but bumping up the hard limit seems reasonable. |
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.
I still feel doubts about it, but considering it is merely a safety limit I have no strict objections.
Vendor testing shows we should be able to get a little more performance if we further relax the hard limit which we're hitting. Authored-by: Brian Behlendorf <[email protected]> Reviewed-by: Alexander Motin <[email protected]> Signed-off-by: Tony Hutter <[email protected]> Closes openzfs#15324
Vendor testing shows we should be able to get a little more performance if we further relax the hard limit which we're hitting. Authored-by: Brian Behlendorf <[email protected]> Reviewed-by: Alexander Motin <[email protected]> Signed-off-by: Tony Hutter <[email protected]> Closes #15324
Vendor testing shows we should be able to get a little more performance if we further relax the hard limit which we're hitting. Authored-by: Brian Behlendorf <[email protected]> Reviewed-by: Alexander Motin <[email protected]> Signed-off-by: Tony Hutter <[email protected]> Closes openzfs#15324
Motivation and Context
Vendor testing shows we should be able to get a little more performance if we further relax the hard limit which we're hitting.
Description
Allows
zfs_rebuild_vdev_limit
to be manually tuned to a larger value to get a little more performance on large systems.How Has This Been Tested?
Locally tested by comparing total rebuild times with various settings for
zfs_rebuild_vdev_limit
. The default value remains unchanged.Types of changes
Checklist:
Signed-off-by
.