-
Notifications
You must be signed in to change notification settings - Fork 565
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
Put file writing behind IO semaphore #557
Conversation
Yeah, I think no effect on Windows. But I also only see like a 5% speedup on macOS in a microbenchmark so IDK. |
When I tried this out with Windows, I also didn't see an effect. Do you think it's worth adding the semaphore for all platforms, or only MacOS? Also, I would definitely rename it to |
@hrueger any chance you can try out this branch? |
In your before case, do you mind running with |
I assume you need the cpuprofile? https://pprof.host/jr4g/ |
This was done with d94208e checked out: https://pprof.host/jw4g/ |
Hmm, better, but the syscalls are still there a lot more than I would have expected. If you're really bored, I'd be interested if you could try changing |
Haha 😅 I just played around a bit and it is really strange. Unsure if I'm doing something completely wrong:
26897-128_cpuprofile.pb.gz It seems like its not getting faster nor slower between 32 and 1... |
Wow, it's incredible that setting it so low makes us faster. We should set it low if that's what macOS works best with, of course. The scaling to me means:
I couldn't reproduce this problem on my M1, so I don't really know how to evaluate the right option here. |
I can see if I can get two friends with an M2 and an M4 to test. I can try on a Mac Mini M1 tomorrow. |
Sorry for the delay. I just tried it on my M1 Mac Mini (lowest spec) and it behaves quite differently. It does not seem to have as big of a problem without the sephamore (current main branch):
but it still benefits from the changes in this branch:
|
A comment in from the side line here (but I do have a fair amount experience with concurrency in Go). I suspect that a better fix would be to add some upper bound ( typescript-go/internal/core/workgroup.go Line 18 in 41b535e
|
Hi @bep! Huge fan of hugo 😄 Early on, we found that limiting the work itself was slower than just letting Go schedule everything; maybe that's no longer true, though. FWIW this IO semaphore trick is something gopls does, though it doesn't have to worry about writing out to disk or anything, only frequent file reads (which I introduced early on here too since it helped so much). |
I reproduced this by compiling vscode on my dual-corp-enrolled M3 Pro (running both Microsoft and Github security software): on main (plugged in) on this branch (plugged in) |
Fixes #525
Apparently, file writing also consumes locks on macOS; stick it behind the semaphore too.