You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_ _ _| |_ __ _ | Type "help()" to list help topics
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 0.2.0-2508.r2d97566e.dirty
_/ |\__'_|_|_|\__'_| | Commit 2d97566e44 2013-07-09 23:05:21*
|__/ | x86_64-linux-gnu
julia> addprocs(10)Master process (id 1) could not connect within 60.0 seconds.
exiting.
Master process (id 1) could not connect within 60.0 seconds.
exiting.
Master process (id 1) could not connect within 60.0 seconds.
exiting.
Master process (id 1) could not connect within 60.0 seconds.
exiting.
Master process (id 1) could not connect within 60.0 seconds.
exiting.
Master process (id 1) could not connect within 60.0 seconds.
exiting.
Master process (id 1) could not connect within 60.0 seconds.
exiting.
Master process (id 1) could not connect within 60.0 seconds.
exiting.
Master process (id 1) could not connect within 60.0 seconds.
exiting.
Master process (id 1) could not connect within 60.0 seconds.
exiting.
when I did an addprocs(10) after launching julia. All 10 workers exited immediately after the call, presumably because the first call to time() in the below code returned 0
start = time()
while !haskey(map_pid_wrkr, 1) && (time() - start) < timeout
sleep(1.0)
end
if !haskey(map_pid_wrkr, 1)
print(STDERR, "Master process (id 1) could not connect within $timeout seconds.\nexiting.\n")
exit(1)
end
Since, it happened to all 10 processes, and is not reproducable, I am guessing it is because something on my Linux system delayed some proper initialization required by time() which is just a ccall to clock_now
The text was updated successfully, but these errors were encountered:
Saw this just once:
when I did an addprocs(10) after launching julia. All 10 workers exited immediately after the call, presumably because the first call to
time()
in the below code returned 0Since, it happened to all 10 processes, and is not reproducable, I am guessing it is because something on my Linux system delayed some proper initialization required by
time()
which is just accall
toclock_now
The text was updated successfully, but these errors were encountered: