feat: improve ProcFDUsage performance#189
Merged
andrewkroh merged 1 commit intoelastic:masterfrom Jun 6, 2025
Merged
Conversation
ioutil.ReadDir calls stat on every directory entry. These calls are not required
to count the number of file descriptors.
For a process with many open file descriptors this can be costly.
In a local benchmark on a directory with 10k files, we observe the following
improvement by using (*os.File).Readdir directly:
```
goos: linux
goarch: amd64
pkg: github.com/elastic/gosigar
cpu: Intel(R) Xeon(R) CPU @ 2.80GHz
│ old.txt │ new.txt │
│ sec/op │ sec/op vs base │
GetDirEntryCount-24 23.874m ± 0% 2.967m ± 0% -87.57% (p=0.000 n=25)
│ old.txt │ new.txt │
│ B/op │ B/op vs base │
GetDirEntryCount-24 3310.4Ki ± 0% 729.4Ki ± 0% -77.97% (p=0.000 n=25)
│ old.txt │ new.txt │
│ allocs/op │ allocs/op vs base │
GetDirEntryCount-24 30.03k ± 0% 10.02k ± 0% -66.62% (p=0.000 n=25)
```
f1e0bcd to
4ae2192
Compare
This file contains hidden or 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
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.
ioutil.ReadDir calls stat on every directory entry. These calls are not required
to count the number of file descriptors.
For a process with many open file descriptors this can be costly.
In a local benchmark on a directory with 10k files, we observe the following improvement by using (*os.File).Readdirnames directly: