-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Race condition with package precompile #17320
Comments
See #5622: libgit2 provides a cross-platform locking mechanism. |
Hello. I believe I might be seeing this or a related problem when using the same module in a main program and another module, see discourse for the unfortunately long story. Of course it might be that my module loading is messed up, but then the error message is not clear to me. |
@ckoe-bccms, this issue is about running multiple |
Should be fixed by #36416. |
I have a situation where multiple julia instances might trigger precompilation of the same packages. If that happens, errors occur because the various julia instances try to write to the same precompile file at the same time. This is on a single machine.
#13684 describes a similar issue, but I'm opening a new issue here because the solutions suggested for #13684 won't work for my case: having a machine local precompile location would solve #13684 but not my issue here.
My wild guess is that to fix this problem, #7176 would have to be resolved.
The text was updated successfully, but these errors were encountered: