mount/mountinfo_linux: parser speed up #2324
Merged
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.
The mountinfo parser implemented via
fmt.Sscanf()
is slower than the one usingstrings.Split()
andstrconv.Atoi()
. This rewrite helps to speed it up to a factor of 8x, here is a result fromgo bench
:I tried other approaches, such as using
fmt.Sscanf()
for the first three (integer) fields andstrings.Split()
for the rest, but it still slows things down considerably:Note the old code uses
fmt.Sscanf
first, then a linear search for '-' field, then a split for the last 3 fields. The new code relies on a single split.One other thing is, the new code is more future proof as it skips extra optional fields before the separator (currently there are none).
I have also added more comments to aid in future development.
Finally, the test data is fixed to not have white space before the first field.
Based on a similar change in Moby, moby/moby#36091.