-
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
runtime: async preemption (or alternative) for wasm #71134
Comments
I have two ideas, one idea is to reimplement sysmon in js and rely on asynchronous scheduling on the js side to run it, but this would require runtime to expose a lot of internal interfaces in wasm, and it would also take extra effort to keep the js implementation consistent with the go implementation. |
I agree that using Wasm threads is probably the way to go. I don't think this is urgent, so we can probably wait until wasm threads are generally available. If we need anything urgent in the mean time, we could insert manual preemption point in specific code paths.
https://go.dev/cl/228893 (and the stack) was an attempt. The main difficulty is the lack of the equivalent of SA_RESTART, so I have to restart interrupted syscalls manually. Due the the low availability and stability of the builders, I was not able to test the changes successfully. |
This also applies to wasip1/wasm (not just js). |
Change https://go.dev/cl/640195 mentions this issue: |
The TestRootConcurrentClose test can fail when GOARCH=WASM because of goroutine starvation. The spawned goroutine will sometimes run in a loop and never have the main goroutine be scheduled. This causes the test to fail due to a timeout. This change forces the goroutine to be scheduled with each iteration of the loop when GOARCH=WASM. For #71134 Fixes #71117 Change-Id: I4fb68907c9ac3b33bd0572d5e5db2974a3379191 Reviewed-on: https://go-review.googlesource.com/c/go/+/640195 Reviewed-by: Michael Knyszek <mknyszek@google.com> Reviewed-by: Cherry Mui <cherryyz@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Carlos Amedee <carlos@golang.org>
This is split from #65178, as the specific scheduler bug was fixed.
Due to its single-threaded nature, js/wasm have no sysmon thread, and thus no asynchronous preemption. Thus the pitfalls of Go prior to asynchronous preemption apply: tight loops that fail to yield may delay scheduling indefinitely.
This is a tracking issue for problems due to the lack of asynchronous preemption. As noted in #36365, due to the lack of threading, asynchronous preemption isn't possible today, but perhaps could be with wasm threads? Or we could have an alternative scheme for js/wasm (such as adding preemption points to loops).
(Plan9 is also missing async preemption, but that simply needs an implementation)
The text was updated successfully, but these errors were encountered: