-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Distributed: "From worker" message missing or showing wrong worker id #38482
Comments
This seems to be because |
Thinking about how to address this. One thing I tried that works is to launch the worker julia processes with the same pipe for stdout and stderr, instead of sharing the parent process stderr. However, because of #31036 it seems we need to preserve the option for the worker to share the parent process stderr. It also doesn't seem ideal that calling |
Aha! #26798 |
See also JuliaLang/Distributed.jl#51 for similar issues. |
This has the additional benefit of making the initial logger respect changes to redirect_stderr/stdout, until the user explicitly sets another stream as the logging destination. Fix #26798 Fix #38482 Replaces #26920, which provided the idea and most of the implementation Co-author-by: Joe Petviashvili <joe@gnom.us>
This has the additional benefit of making the initial logger respect changes to redirect_stderr/stdout, until the user explicitly sets another stream as the logging destination. Fix #26798 Fix #38482 Replaces #26920, which provided the idea and most of the implementation Co-author-by: Joe Petviashvili <joe@gnom.us>
This has the additional benefit of making the initial logger respect changes to redirect_stderr/stdout, until the user explicitly sets another stream as the logging destination. Fix #26798 Fix #38482 Replaces #26920, which provided the idea and most of the implementation Co-authored-by: Joe Petviashvili <joe@gnom.us>
This has the additional benefit of making the initial logger respect changes to redirect_stderr/stdout, until the user explicitly sets another stream as the logging destination. Fix #26798 Fix #38482 Replaces #26920, which provided the idea and most of the implementation Co-authored-by: Joe Petviashvili <joe@gnom.us>
This has the additional benefit of making the initial logger respect changes to redirect_stderr/stdout, until the user explicitly sets another stream as the logging destination. Fix JuliaLang#26798 Fix JuliaLang#38482 Replaces JuliaLang#26920, which provided the idea and most of the implementation Co-authored-by: Joe Petviashvili <joe@gnom.us>
This has the additional benefit of making the initial logger respect changes to redirect_stderr/stdout, until the user explicitly sets another stream as the logging destination. Fix JuliaLang#26798 Fix JuliaLang#38482 Replaces JuliaLang#26920, which provided the idea and most of the implementation Co-authored-by: Joe Petviashvili <joe@gnom.us>
This has the additional benefit of making the initial logger respect changes to redirect_stderr/stdout, until the user explicitly sets another stream as the logging destination. Fix JuliaLang#26798 Fix JuliaLang#38482 Replaces JuliaLang#26920, which provided the idea and most of the implementation Co-authored-by: Joe Petviashvili <joe@gnom.us>
Log message (
@info
,@warn
,@error
) on workers do not show the "from worker" message (for local workers and first remote worker), or show the wrong worker id (for other remote workers):Local and remote
versioninfo()
:The text was updated successfully, but these errors were encountered: