-
Notifications
You must be signed in to change notification settings - Fork 85
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
future_lapply() is silent for the multisession plan #171
Comments
For why, see Issue #141. If it's enough with output after the future has resolved, then that might happen (Issue #67). See also #172. A hack that I don't really recommend is to use: cl <- makeClusterPSOCK(availableCores(), outfile = "")
plan(cluster, workers = cl) which will have all the output of the workers to go the system's stdout/stderr. Note however that such output cannot be captured by the main/owner R session using e.g. |
I did not think about compatibility with |
We give up console output for parLapply parallelism, but it was a hack anyway (futureverse/future#171). The output could not be captured by capture.output()
From #141, I can see that this is not really |
I would like to see console output in the following, but it appears silent.
Drake tries to log to the console when it builds targets, so this affects user friendliness, and to some extent, usability.
The text was updated successfully, but these errors were encountered: