-
Notifications
You must be signed in to change notification settings - Fork 111
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
Possibility of lost events due to use of edge-triggered Condition in entr(...) #837
Comments
I believe this is still a problem even though the file watching tasks this revision_event watching loop should typically end up running in the same thread (the file watching tasks are sticky). The reason is is that the Julia interpreter can choose to yield at any time and particularly it may yield during IO performed in |
I'm not sure there's a great solution for this short of file-locking. xref #841 |
I'm not sure if locking one of the places the event is fired with the revision_lock solves the issue. The problem is that for Imagine we have two tasks, and task 1 is running
Another issue is that it appears The solution is to use something level triggered. https://docs.julialang.org/en/v1/base/parallel/#Base.Event together with autoreset seems like it should work, although requires Julia 1.8. Note that in this case we need to have only a single "listener", which should probably be fine I guess? Or are there situations where there need to be multiple listeners? In the latter case, I guess some kind of pub/sub pattern would be needed where each listener adds its own autoresetting event, and then notify notifies all of them. |
Ah, I assumed it was because files were being added to Soon I'll ditch support for anything less than Julia 1.10, so perhaps this can be fully fixed then. |
JuliaLang/julia#55877 should fix this, with a couple of changes to Revise. Too many deadlines now but it's on the agenda. |
@JanisErdmanis caught a possible race-condition in
Revise.entr(...)
In particular in these lines:
Revise.jl/src/callbacks.jl
Lines 163 to 166 in 13a5eb7
It looks like any event fired while
Revise.revise()
is running will be lost. I guess something level-triggered like https://docs.julialang.org/en/v1/base/parallel/#Base.Event could be used. This would assume that there is only one listener, which is probably reasonable.The text was updated successfully, but these errors were encountered: