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

mount/mountinfo_linux: parser speed up #2324

Merged
merged 1 commit into from
May 7, 2018

Conversation

kolyshkin
Copy link
Contributor

The mountinfo parser implemented via fmt.Sscanf() is slower than the one using strings.Split() and strconv.Atoi(). This rewrite helps to speed it up to a factor of 8x, here is a result from go bench:

BenchmarkParsingScanf-4            300          22294112 ns/op
BenchmarkParsingSplit-4           3000           2780703 ns/op

I tried other approaches, such as using fmt.Sscanf() for the first three (integer) fields and strings.Split() for the rest, but it still slows things down considerably:

BenchmarkParsingMixed-4           1000           8827058 ns/op

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.

@crosbymichael
Copy link
Member

@kolyshkin ci failed with

gometalinter --config .gometalinter.json ./...
mount/mountinfo_linux.go:101:5:warning: ineffective break statement. Did you mean to break out of the outer loop? (SA4011) (staticcheck)
make: *** [check] Error 1

The mountinfo parser implemented via `fmt.Sscanf()` is slower than the one
using `strings.Split()` and `strconv.Atoi()`. This rewrite helps to speed it
up to a factor of 8x, here is a result from `go bench`:

> BenchmarkParsingScanf-4            300          22294112 ns/op
> BenchmarkParsingSplit-4           3000           2780703 ns/op

I tried other approaches, such as using `fmt.Sscanf()` for the first
three (integer) fields and `strings.Split()` for the rest, but it slows
things down considerably:

> BenchmarkParsingMixed-4           1000           8827058 ns/op

Note the old code uses `fmt.Sscanf` first, then a linear search for the
'-' 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

[v2: remove no-op break statement to silence staticcheck]
Signed-off-by: Kir Kolyshkin <[email protected]>
@kolyshkin
Copy link
Contributor Author

Apparently I had an old version of gometalinter locally. Fixed.

@codecov-io
Copy link

Codecov Report

Merging #2324 into master will decrease coverage by <.01%.
The diff coverage is 70.96%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master    #2324      +/-   ##
==========================================
- Coverage   44.98%   44.98%   -0.01%     
==========================================
  Files          92       92              
  Lines        9331     9340       +9     
==========================================
+ Hits         4198     4202       +4     
- Misses       4456     4459       +3     
- Partials      677      679       +2
Flag Coverage Δ
#linux 49.28% <70.96%> (-0.01%) ⬇️
#windows 41.24% <ø> (ø) ⬆️
Impacted Files Coverage Δ
mount/mountinfo_linux.go 53.06% <70.96%> (-1.94%) ⬇️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update e017143...8eec925. Read the comment docs.

@crosbymichael
Copy link
Member

LGTM

Copy link
Member

@dmcgowan dmcgowan left a 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
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants