search for: r_parallel_setup_timeout

Displaying 2 results from an estimated 2 matches for "r_parallel_setup_timeout".

2019 Mar 18
2
SUGGESTION: Proposal to mitigate problem with stray processes left behind by parallel::makeCluster()
...with above stray processes from running 'R CMD check', we could shorten the 'timeout' which is currently hardcoded to 30 days (src/library/parallel/R/snow.R). By making it possible to control the default via environment variables, e.g. setup_timeout = as.numeric(Sys.getenv("R_PARALLEL_SETUP_TIMEOUT", 60 * 2)), # 2 minutes timeout = as.numeric(Sys.getenv("R_PARALLEL_SETUP_TIMEOUT", 60 * 60 * 24 * 30)), # 30 days it would be straightforward to adjust `R CMD check` to use, say, R_PARALLEL_SETUP_TIMEOUT=60 by default. This would cause any stray processes to time out af...
2019 Mar 27
0
SUGGESTION: Proposal to mitigate problem with stray processes left behind by parallel::makeCluster()
...s from running 'R CMD > check', we could shorten the 'timeout' which is currently hardcoded to > 30 days (src/library/parallel/R/snow.R). By making it possible to > control the default via environment variables, e.g. > > setup_timeout = as.numeric(Sys.getenv("R_PARALLEL_SETUP_TIMEOUT", 60 > * 2)), # 2 minutes > timeout = as.numeric(Sys.getenv("R_PARALLEL_SETUP_TIMEOUT", 60 * 60 > * 24 * 30)), # 30 days > > it would be straightforward to adjust `R CMD check` to use, say, > > R_PARALLEL_SETUP_TIMEOUT=60 > > by default. This wo...