-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
x/tools/gopls: gopls opens too many files with "go mod tidy" #71698
Comments
@samthanawalla @matloob Any idea why the go mod tidy command might have 11417 open files? If there's some parallel recursion over the file tree, we should impose a reasonable limit on parallel I/O. |
Usually when we recurse over the file tree we use par.Queues that limit the number of operations to GOMAXPROCS, and the opened files for each operation should be closed at the end of those operations. One thing that comes to mind that may or may not be the issue is the module index: we mmap files that index each of the modules, and each of the packages in the main/work module and we don't close those files for the lifetime of the go command so it's possible that in a very large project could open too many of those files? I'm curious how many packages |
Does the go command close the fd for each mapped file? If so then the mapping shouldn't continue to count against the fd limit. |
Change https://go.dev/cl/652435 mentions this issue: |
If we close the fd but leave the mmap'ed region, I think that still counts as an open file for the kernel-wide limit even if not an open file descriptor for the process. So closing them would make lsof look better but probably not avoid "Too many open files in system". It looks like you're on a Mac. On my Mac, What is your kern.maxfiles? |
Change https://go.dev/cl/653055 mentions this issue: |
GetPackage is sometimes called with a modroot or pkgdir that ends with a path separator, and sometimes without. Clean them before passing them to openIndexPackage to deduplicate calls to mcache.Do and action entry files. This shouldn't affect #71698 but was discovered while debugging that issue. Change-Id: I6a7fa4de93f45801504abea11bd97f6c6577f296 Reviewed-on: https://go-review.googlesource.com/c/go/+/652435 Reviewed-by: Alan Donovan <adonovan@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Closing the file after mmap will reduce the number of files associated with the process. This will not likely help with #71698 but it doesn't hurt to close the files and should simplify lsof output. For #71698 Change-Id: I06a1bf91914afc7703783fe1a38d8bc5a6fb3d9d Reviewed-on: https://go-review.googlesource.com/c/go/+/653055 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Alan Donovan <adonovan@google.com>
gopls version
go env
What did you do?
Opening project in emacs with lsp-mode.
What did you see happen?
in ~= 30 minutes can do nothing. Getting "Too many open files in system" on any operation.
What did you expect to see?
Everything works well
Editor and settings
directory filters: ["-directory1", "-directory2", ...],
file watch ignored directories: ["directory1", "directory2", ...]
Logs
The text was updated successfully, but these errors were encountered: