R Under development (unstable) (2024-03-25 r86192 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > source("incl/start.R") [17:25:54.978] plan(): Setting new future strategy stack: [17:25:54.979] List of future strategies: [17:25:54.979] 1. sequential: [17:25:54.979] - args: function (..., envir = parent.frame(), workers = "") [17:25:54.979] - tweaked: FALSE [17:25:54.979] - call: future::plan("sequential") [17:25:54.994] plan(): nbrOfWorkers() = 1 > > message("*** ClusterRegistry() ... ") *** ClusterRegistry() ... > > allCores <- 1:availCores > > ## Speed up CRAN checks: Skip on CRAN Windows 32-bit > if (isWin32) allCores <- NULL > > for (cores in allCores) { + message(sprintf("Testing with %d cores ...", cores)) + options(mc.cores = cores) + + message("Available cores: ", availableCores()) + + ## In case sessions have been created in previous tests + message("Stopping any running cluster ...") + ClusterRegistry("stop") + cluster <- ClusterRegistry("get") + stopifnot(length(cluster) == 0) + message("Stopping any running cluster ... DONE") + + message("Starting cluster ...") + res <- tryCatch({ + cluster <- ClusterRegistry("set", workers = availableCores() - 1L) + str(cluster) + print(cluster) + }, error = identity) + if (cores == 1) stopifnot(inherits(res, "error")) + message("Starting cluster ... DONE") + + message("Starting dual-worker cluster ...") + cluster <- ClusterRegistry(action = "start", workers = 2L) + str(cluster) + print(cluster) + stopifnot(length(cluster) == 2L) + message("Starting duel-worker cluster ... DONE") + + message("Starting single-worker cluster ...") + cluster <- ClusterRegistry(action = "start", workers = 1L) + str(cluster) + print(cluster) + stopifnot(length(cluster) == 1L) + message("Starting single-worker cluster ... DONE") + + cluster <- ClusterRegistry(action = "get") + print(cluster) + stopifnot(length(cluster) == 1L) + + message("Stopping single-worker cluster ...") + cluster <- ClusterRegistry(action = "stop") + print(cluster) + stopifnot(length(cluster) == 0L) + message("Stopping single-worker cluster ... DONE") + + message(sprintf("Testing with %d cores ... DONE", cores)) + } ## for (cores ...) Testing with 1 cores ... Available cores: 1 Stopping any running cluster ... Stopping any running cluster ... DONE Starting cluster ... Starting cluster ... DONE Starting dual-worker cluster ... [17:25:55.026] [local output] makeClusterPSOCK() ... Warning in checkNumberOfLocalWorkers(workers) : Careful, you are setting up 2 localhost parallel workers with only 1 CPU cores available for this R process (per 'mc.cores'), which could result in a 200% load. The soft limit is set to 100%. Overusing the CPUs has negative impact on the current R process, but also on all other processes of yours and others running on the same machine. See help("parallelly.options", package = "parallelly") for how to override the soft and hard limits [17:25:55.056] [local output] Workers: [n = 2] 'localhost', 'localhost' [17:25:55.062] [local output] Base port: 33754 [17:25:55.063] [local output] Getting setup options for 2 cluster nodes ... [17:25:55.063] [local output] - Node 1 of 2 ... [17:25:55.063] [local output] localMachine=TRUE => revtunnel=FALSE [17:25:55.064] Testing if worker's PID can be inferred: '"D:/RCompile/recent/R/bin/x64/Rscript" -e "try(suppressWarnings(cat(Sys.getpid(),file=\"D:/temp/Rtmp8kzb1X/worker.rank=1.parallelly.parent=195252.2fab44e805c9f.pid\")), silent = TRUE)" -e "file.exists(\"D:/temp/Rtmp8kzb1X/worker.rank=1.parallelly.parent=195252.2fab44e805c9f.pid\")"' [17:25:55.505] - Possible to infer worker's PID: TRUE [17:25:55.506] [local output] Rscript port: 33754 [17:25:55.506] [local output] - Node 2 of 2 ... [17:25:55.506] [local output] localMachine=TRUE => revtunnel=FALSE [17:25:55.508] [local output] Rscript port: 33754 [17:25:55.508] [local output] Getting setup options for 2 cluster nodes ... done [17:25:55.508] [local output] - Parallel setup requested for some PSOCK nodes [17:25:55.509] [local output] Setting up PSOCK nodes in parallel [17:25:55.509] List of 36 [17:25:55.509] $ worker : chr "localhost" [17:25:55.509] ..- attr(*, "localhost")= logi TRUE [17:25:55.509] $ master : chr "localhost" [17:25:55.509] $ port : int 33754 [17:25:55.509] $ connectTimeout : num 120 [17:25:55.509] $ timeout : num 120 [17:25:55.509] $ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [17:25:55.509] $ homogeneous : logi TRUE [17:25:55.509] $ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=ClusterRegistry.R:195252:CRANWIN"| __truncated__ [17:25:55.509] $ rscript_envs : NULL [17:25:55.509] $ rscript_libs : NULL [17:25:55.509] $ rscript_startup : NULL [17:25:55.509] $ rscript_sh : chr "cmd" [17:25:55.509] $ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [17:25:55.509] $ methods : logi TRUE [17:25:55.509] $ socketOptions : chr "no-delay" [17:25:55.509] $ useXDR : logi FALSE [17:25:55.509] $ outfile : chr "/dev/null" [17:25:55.509] $ renice : int NA [17:25:55.509] $ rshcmd : NULL [17:25:55.509] $ user : chr(0) [17:25:55.509] $ revtunnel : logi FALSE [17:25:55.509] $ rshlogfile : NULL [17:25:55.509] $ rshopts : chr(0) [17:25:55.509] $ rank : int 1 [17:25:55.509] $ manual : logi FALSE [17:25:55.509] $ dryrun : logi FALSE [17:25:55.509] $ quiet : logi FALSE [17:25:55.509] $ setup_strategy : chr "parallel" [17:25:55.509] $ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [17:25:55.509] $ pidfile : chr "D:/temp/Rtmp8kzb1X/worker.rank=1.parallelly.parent=195252.2fab44e805c9f.pid" [17:25:55.509] $ rshcmd_label : NULL [17:25:55.509] $ rsh_call : NULL [17:25:55.509] $ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [17:25:55.509] $ localMachine : logi TRUE [17:25:55.509] $ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [17:25:55.509] master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [17:25:55.509] 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [17:25:55.509] 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [17:25:55.509] rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [17:25:55.509] "cmd", "sh"), default_packages = c("datasets", "utils", "grDevices", [17:25:55.509] "graphics", "stats", if (methods) "methods"), methods = TRUE, socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [17:25:55.509] "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [17:25:55.509] FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [17:25:55.509] NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [17:25:55.509] NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [17:25:55.509] setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [17:25:55.509] "parallel"), action = c("launch", "options"), verbose = FALSE) [17:25:55.509] $ arguments :List of 28 [17:25:55.509] ..$ worker : chr "localhost" [17:25:55.509] ..$ master : NULL [17:25:55.509] ..$ port : int 33754 [17:25:55.509] ..$ connectTimeout : num 120 [17:25:55.509] ..$ timeout : num 120 [17:25:55.509] ..$ rscript : NULL [17:25:55.509] ..$ homogeneous : NULL [17:25:55.509] ..$ rscript_args : NULL [17:25:55.509] ..$ rscript_envs : NULL [17:25:55.509] ..$ rscript_libs : NULL [17:25:55.509] ..$ rscript_startup : NULL [17:25:55.509] ..$ rscript_sh : chr [1:3] "auto" "cmd" "sh" [17:25:55.509] ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [17:25:55.509] ..$ methods : logi TRUE [17:25:55.509] ..$ socketOptions : chr "no-delay" [17:25:55.509] ..$ useXDR : logi FALSE [17:25:55.509] ..$ outfile : chr "/dev/null" [17:25:55.509] ..$ renice : int NA [17:25:55.509] ..$ rshcmd : NULL [17:25:55.509] ..$ user : NULL [17:25:55.509] ..$ revtunnel : logi NA [17:25:55.509] ..$ rshlogfile : NULL [17:25:55.509] ..$ rshopts : NULL [17:25:55.509] ..$ rank : int 1 [17:25:55.509] ..$ manual : logi FALSE [17:25:55.509] ..$ dryrun : logi FALSE [17:25:55.509] ..$ quiet : logi FALSE [17:25:55.509] ..$ setup_strategy : chr "parallel" [17:25:55.509] - attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [17:25:55.533] [local output] System call to launch all workers: [17:25:55.533] [local output] "D:/RCompile/recent/R/bin/x64/Rscript" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "#label=ClusterRegistry.R:195252:CRANWIN3:CRAN" -e "try(suppressWarnings(cat(Sys.getpid(),file=\"D:/temp/Rtmp8kzb1X/worker.rank=1.parallelly.parent=195252.2fab44e805c9f.pid\")), silent = TRUE)" -e "options(socketOptions = \"no-delay\")" -e "workRSOCK <- tryCatch(parallel:::.workRSOCK, error=function(e) parallel:::.slaveRSOCK); workRSOCK()" MASTER=localhost PORT=33754 OUT=/dev/null TIMEOUT=120 XDR=FALSE SETUPTIMEOUT=120 SETUPSTRATEGY=parallel [17:25:55.533] [local output] Starting PSOCK main server [17:25:55.539] [local output] Workers launched [17:25:55.539] [local output] Waiting for workers to connect back [17:25:55.540] - [local output] 0 workers out of 2 ready [17:25:55.702] - [local output] 0 workers out of 2 ready [17:25:55.702] - [local output] 1 workers out of 2 ready [17:25:55.727] - [local output] 1 workers out of 2 ready [17:25:55.727] - [local output] 2 workers out of 2 ready [17:25:55.728] [local output] Launching of workers completed [17:25:55.728] [local output] Collecting session information from workers [17:25:55.729] [local output] - Worker #1 of 2 [17:25:55.730] [local output] - Worker #2 of 2 [17:25:55.730] [local output] makeClusterPSOCK() ... done List of 2 $ :List of 4 ..$ con : 'sockconn' int 4 .. ..- attr(*, "conn_id")= ..$ host : chr "localhost" .. ..- attr(*, "localhost")= logi TRUE ..$ rank : int 0 ..$ session_info:List of 6 .. ..$ r :List of 16 .. .. ..$ platform : chr "x86_64-w64-mingw32" .. .. ..$ arch : chr "x86_64" .. .. ..$ os : chr "mingw32" .. .. ..$ crt : chr "ucrt" .. .. ..$ system : chr "x86_64, mingw32" .. .. ..$ status : chr "Under development (unstable)" .. .. ..$ major : chr "4" .. .. ..$ minor : chr "4.0" .. .. ..$ year : chr "2024" .. .. ..$ month : chr "03" .. .. ..$ day : chr "25" .. .. ..$ svn rev : chr "86192" .. .. ..$ language : chr "R" .. .. ..$ version.string: chr "R Under development (unstable) (2024-03-25 r86192 ucrt)" .. .. ..$ nickname : chr "Unsuffered Consequences" .. .. ..$ os.type : chr "windows" .. ..$ system :List of 8 .. .. ..$ sysname : chr "Windows" .. .. ..$ release : chr "Server x64" .. .. ..$ version : chr "build 20348" .. .. ..$ nodename : chr "CRANWIN3" .. .. ..$ machine : chr "x86-64" .. .. ..$ login : chr "CRAN" .. .. ..$ user : chr "CRAN" .. .. ..$ effective_user: chr "CRAN" .. ..$ libs : chr [1:2] "D:/temp/RtmpAVtqMV/RLIBS_30708245f64e7" "D:/RCompile/recent/R/library" .. ..$ pkgs : NULL .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" .. ..$ process:List of 1 .. .. ..$ pid: int 29936 ..- attr(*, "options")=List of 35 .. ..$ worker : chr "localhost" .. .. ..- attr(*, "localhost")= logi TRUE .. ..$ master : chr "localhost" .. ..$ port : int 33754 .. ..$ connectTimeout : num 120 .. ..$ timeout : num 120 .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" .. ..$ homogeneous : logi TRUE .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=ClusterRegistry.R:195252:CRANWIN"| __truncated__ .. ..$ rscript_envs : NULL .. ..$ rscript_libs : NULL .. ..$ rscript_startup : NULL .. ..$ rscript_sh : chr "cmd" .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... .. ..$ methods : logi TRUE .. ..$ socketOptions : chr "no-delay" .. ..$ useXDR : logi FALSE .. ..$ outfile : chr "/dev/null" .. ..$ renice : int NA .. ..$ rshcmd : NULL .. ..$ user : chr(0) .. ..$ revtunnel : logi FALSE .. ..$ rshlogfile : NULL .. ..$ rshopts : chr(0) .. ..$ rank : int 0 .. ..$ manual : logi FALSE .. ..$ dryrun : logi FALSE .. ..$ quiet : logi FALSE .. ..$ setup_strategy : chr "parallel" .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ .. ..$ rshcmd_label : NULL .. ..$ rsh_call : NULL .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ .. ..$ localMachine : logi TRUE .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", "cmd", "sh"), default_packages = c("datasets", "utils", "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", "parallel"), action = c("launch", "options"), verbose = FALSE) .. ..$ arguments :List of 28 .. .. ..$ worker : chr "localhost" .. .. ..$ master : NULL .. .. ..$ port : int 33754 .. .. ..$ connectTimeout : num 120 .. .. ..$ timeout : num 120 .. .. ..$ rscript : NULL .. .. ..$ homogeneous : NULL .. .. ..$ rscript_args : NULL .. .. ..$ rscript_envs : NULL .. .. ..$ rscript_libs : NULL .. .. ..$ rscript_startup : NULL .. .. ..$ rscript_sh : chr [1:3] "auto" "cmd" "sh" .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... .. .. ..$ methods : logi TRUE .. .. ..$ socketOptions : chr "no-delay" .. .. ..$ useXDR : logi FALSE .. .. ..$ outfile : chr "/dev/null" .. .. ..$ renice : int NA .. .. ..$ rshcmd : NULL .. .. ..$ user : NULL .. .. ..$ revtunnel : logi NA .. .. ..$ rshlogfile : NULL .. .. ..$ rshopts : NULL .. .. ..$ rank : int 1 .. .. ..$ manual : logi FALSE .. .. ..$ dryrun : logi FALSE .. .. ..$ quiet : logi FALSE .. .. ..$ setup_strategy : chr "parallel" .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" $ :List of 4 ..$ con : 'sockconn' int 5 .. ..- attr(*, "conn_id")= ..$ host : chr "localhost" .. ..- attr(*, "localhost")= logi TRUE ..$ rank : int 1 ..$ session_info:List of 6 .. ..$ r :List of 16 .. .. ..$ platform : chr "x86_64-w64-mingw32" .. .. ..$ arch : chr "x86_64" .. .. ..$ os : chr "mingw32" .. .. ..$ crt : chr "ucrt" .. .. ..$ system : chr "x86_64, mingw32" .. .. ..$ status : chr "Under development (unstable)" .. .. ..$ major : chr "4" .. .. ..$ minor : chr "4.0" .. .. ..$ year : chr "2024" .. .. ..$ month : chr "03" .. .. ..$ day : chr "25" .. .. ..$ svn rev : chr "86192" .. .. ..$ language : chr "R" .. .. ..$ version.string: chr "R Under development (unstable) (2024-03-25 r86192 ucrt)" .. .. ..$ nickname : chr "Unsuffered Consequences" .. .. ..$ os.type : chr "windows" .. ..$ system :List of 8 .. .. ..$ sysname : chr "Windows" .. .. ..$ release : chr "Server x64" .. .. ..$ version : chr "build 20348" .. .. ..$ nodename : chr "CRANWIN3" .. .. ..$ machine : chr "x86-64" .. .. ..$ login : chr "CRAN" .. .. ..$ user : chr "CRAN" .. .. ..$ effective_user: chr "CRAN" .. ..$ libs : chr [1:2] "D:/temp/RtmpAVtqMV/RLIBS_30708245f64e7" "D:/RCompile/recent/R/library" .. ..$ pkgs : NULL .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" .. ..$ process:List of 1 .. .. ..$ pid: int 93032 ..- attr(*, "options")=List of 35 .. ..$ worker : chr "localhost" .. .. ..- attr(*, "localhost")= logi TRUE .. ..$ master : chr "localhost" .. ..$ port : int 33754 .. ..$ connectTimeout : num 120 .. ..$ timeout : num 120 .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" .. ..$ homogeneous : logi TRUE .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=ClusterRegistry.R:195252:CRANWIN"| __truncated__ .. ..$ rscript_envs : NULL .. ..$ rscript_libs : NULL .. ..$ rscript_startup : NULL .. ..$ rscript_sh : chr "cmd" .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... .. ..$ methods : logi TRUE .. ..$ socketOptions : chr "no-delay" .. ..$ useXDR : logi FALSE .. ..$ outfile : chr "/dev/null" .. ..$ renice : int NA .. ..$ rshcmd : NULL .. ..$ user : chr(0) .. ..$ revtunnel : logi FALSE .. ..$ rshlogfile : NULL .. ..$ rshopts : chr(0) .. ..$ rank : int 1 .. ..$ manual : logi FALSE .. ..$ dryrun : logi FALSE .. ..$ quiet : logi FALSE .. ..$ setup_strategy : chr "parallel" .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ .. ..$ rshcmd_label : NULL .. ..$ rsh_call : NULL .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ .. ..$ localMachine : logi TRUE .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", "cmd", "sh"), default_packages = c("datasets", "utils", "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", "parallel"), action = c("launch", "options"), verbose = FALSE) .. ..$ arguments :List of 28 .. .. ..$ worker : chr "localhost" .. .. ..$ master : NULL .. .. ..$ port : int 33754 .. .. ..$ connectTimeout : num 120 .. .. ..$ timeout : num 120 .. .. ..$ rscript : NULL .. .. ..$ homogeneous : NULL .. .. ..$ rscript_args : NULL .. .. ..$ rscript_envs : NULL .. .. ..$ rscript_libs : NULL .. .. ..$ rscript_startup : NULL .. .. ..$ rscript_sh : chr [1:3] "auto" "cmd" "sh" .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... .. .. ..$ methods : logi TRUE .. .. ..$ socketOptions : chr "no-delay" .. .. ..$ useXDR : logi FALSE .. .. ..$ outfile : chr "/dev/null" .. .. ..$ renice : int NA .. .. ..$ rshcmd : NULL .. .. ..$ user : NULL .. .. ..$ revtunnel : logi NA .. .. ..$ rshlogfile : NULL .. .. ..$ rshopts : NULL .. .. ..$ rank : int 1 .. .. ..$ manual : logi FALSE .. .. ..$ dryrun : logi FALSE .. .. ..$ quiet : logi FALSE .. .. ..$ setup_strategy : chr "parallel" .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" - attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2024-03-25 r86192 ucrt), platform x86_64-w64-mingw32) Starting duel-worker cluster ... DONE Starting single-worker cluster ... [17:25:55.818] [local output] makeClusterPSOCK() ... [17:25:55.822] [local output] Workers: [n = 1] 'localhost' [17:25:55.824] [local output] Base port: 22680 [17:25:55.825] [local output] Getting setup options for 1 cluster nodes ... [17:25:55.825] [local output] - Node 1 of 1 ... [17:25:55.825] [local output] localMachine=TRUE => revtunnel=FALSE [17:25:55.827] [local output] Rscript port: 22680 [17:25:55.827] [local output] Getting setup options for 1 cluster nodes ... done [17:25:55.828] [local output] - Parallel setup requested for some PSOCK nodes [17:25:55.828] [local output] Setting up PSOCK nodes in parallel [17:25:55.828] List of 36 [17:25:55.828] $ worker : chr "localhost" [17:25:55.828] ..- attr(*, "localhost")= logi TRUE [17:25:55.828] $ master : chr "localhost" [17:25:55.828] $ port : int 22680 [17:25:55.828] $ connectTimeout : num 120 [17:25:55.828] $ timeout : num 120 [17:25:55.828] $ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [17:25:55.828] $ homogeneous : logi TRUE [17:25:55.828] $ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=ClusterRegistry.R:195252:CRANWIN"| __truncated__ [17:25:55.828] $ rscript_envs : NULL [17:25:55.828] $ rscript_libs : NULL [17:25:55.828] $ rscript_startup : NULL [17:25:55.828] $ rscript_sh : chr "cmd" [17:25:55.828] $ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [17:25:55.828] $ methods : logi TRUE [17:25:55.828] $ socketOptions : chr "no-delay" [17:25:55.828] $ useXDR : logi FALSE [17:25:55.828] $ outfile : chr "/dev/null" [17:25:55.828] $ renice : int NA [17:25:55.828] $ rshcmd : NULL [17:25:55.828] $ user : chr(0) [17:25:55.828] $ revtunnel : logi FALSE [17:25:55.828] $ rshlogfile : NULL [17:25:55.828] $ rshopts : chr(0) [17:25:55.828] $ rank : int 1 [17:25:55.828] $ manual : logi FALSE [17:25:55.828] $ dryrun : logi FALSE [17:25:55.828] $ quiet : logi FALSE [17:25:55.828] $ setup_strategy : chr "parallel" [17:25:55.828] $ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [17:25:55.828] $ pidfile : chr "D:/temp/Rtmp8kzb1X/worker.rank=1.parallelly.parent=195252.2fab46fe15bac.pid" [17:25:55.828] $ rshcmd_label : NULL [17:25:55.828] $ rsh_call : NULL [17:25:55.828] $ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [17:25:55.828] $ localMachine : logi TRUE [17:25:55.828] $ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [17:25:55.828] master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [17:25:55.828] 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [17:25:55.828] 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [17:25:55.828] rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [17:25:55.828] "cmd", "sh"), default_packages = c("datasets", "utils", "grDevices", [17:25:55.828] "graphics", "stats", if (methods) "methods"), methods = TRUE, socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [17:25:55.828] "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [17:25:55.828] FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [17:25:55.828] NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [17:25:55.828] NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [17:25:55.828] setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [17:25:55.828] "parallel"), action = c("launch", "options"), verbose = FALSE) [17:25:55.828] $ arguments :List of 28 [17:25:55.828] ..$ worker : chr "localhost" [17:25:55.828] ..$ master : NULL [17:25:55.828] ..$ port : int 22680 [17:25:55.828] ..$ connectTimeout : num 120 [17:25:55.828] ..$ timeout : num 120 [17:25:55.828] ..$ rscript : NULL [17:25:55.828] ..$ homogeneous : NULL [17:25:55.828] ..$ rscript_args : NULL [17:25:55.828] ..$ rscript_envs : NULL [17:25:55.828] ..$ rscript_libs : NULL [17:25:55.828] ..$ rscript_startup : NULL [17:25:55.828] ..$ rscript_sh : chr [1:3] "auto" "cmd" "sh" [17:25:55.828] ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [17:25:55.828] ..$ methods : logi TRUE [17:25:55.828] ..$ socketOptions : chr "no-delay" [17:25:55.828] ..$ useXDR : logi FALSE [17:25:55.828] ..$ outfile : chr "/dev/null" [17:25:55.828] ..$ renice : int NA [17:25:55.828] ..$ rshcmd : NULL [17:25:55.828] ..$ user : NULL [17:25:55.828] ..$ revtunnel : logi NA [17:25:55.828] ..$ rshlogfile : NULL [17:25:55.828] ..$ rshopts : NULL [17:25:55.828] ..$ rank : int 1 [17:25:55.828] ..$ manual : logi FALSE [17:25:55.828] ..$ dryrun : logi FALSE [17:25:55.828] ..$ quiet : logi FALSE [17:25:55.828] ..$ setup_strategy : chr "parallel" [17:25:55.828] - attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [17:25:55.849] [local output] System call to launch all workers: [17:25:55.849] [local output] "D:/RCompile/recent/R/bin/x64/Rscript" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "#label=ClusterRegistry.R:195252:CRANWIN3:CRAN" -e "try(suppressWarnings(cat(Sys.getpid(),file=\"D:/temp/Rtmp8kzb1X/worker.rank=1.parallelly.parent=195252.2fab46fe15bac.pid\")), silent = TRUE)" -e "options(socketOptions = \"no-delay\")" -e "workRSOCK <- tryCatch(parallel:::.workRSOCK, error=function(e) parallel:::.slaveRSOCK); workRSOCK()" MASTER=localhost PORT=22680 OUT=/dev/null TIMEOUT=120 XDR=FALSE SETUPTIMEOUT=120 SETUPSTRATEGY=parallel [17:25:55.849] [local output] Starting PSOCK main server [17:25:55.853] [local output] Workers launched [17:25:55.853] [local output] Waiting for workers to connect back [17:25:55.857] - [local output] 0 workers out of 1 ready [17:25:56.015] - [local output] 0 workers out of 1 ready [17:25:56.016] - [local output] 1 workers out of 1 ready [17:25:56.016] [local output] Launching of workers completed [17:25:56.016] [local output] Collecting session information from workers [17:25:56.017] [local output] - Worker #1 of 1 [17:25:56.017] [local output] makeClusterPSOCK() ... done List of 1 $ :List of 4 ..$ con : 'sockconn' int 4 .. ..- attr(*, "conn_id")= ..$ host : chr "localhost" .. ..- attr(*, "localhost")= logi TRUE ..$ rank : int 0 ..$ session_info:List of 6 .. ..$ r :List of 16 .. .. ..$ platform : chr "x86_64-w64-mingw32" .. .. ..$ arch : chr "x86_64" .. .. ..$ os : chr "mingw32" .. .. ..$ crt : chr "ucrt" .. .. ..$ system : chr "x86_64, mingw32" .. .. ..$ status : chr "Under development (unstable)" .. .. ..$ major : chr "4" .. .. ..$ minor : chr "4.0" .. .. ..$ year : chr "2024" .. .. ..$ month : chr "03" .. .. ..$ day : chr "25" .. .. ..$ svn rev : chr "86192" .. .. ..$ language : chr "R" .. .. ..$ version.string: chr "R Under development (unstable) (2024-03-25 r86192 ucrt)" .. .. ..$ nickname : chr "Unsuffered Consequences" .. .. ..$ os.type : chr "windows" .. ..$ system :List of 8 .. .. ..$ sysname : chr "Windows" .. .. ..$ release : chr "Server x64" .. .. ..$ version : chr "build 20348" .. .. ..$ nodename : chr "CRANWIN3" .. .. ..$ machine : chr "x86-64" .. .. ..$ login : chr "CRAN" .. .. ..$ user : chr "CRAN" .. .. ..$ effective_user: chr "CRAN" .. ..$ libs : chr [1:2] "D:/temp/RtmpAVtqMV/RLIBS_30708245f64e7" "D:/RCompile/recent/R/library" .. ..$ pkgs : NULL .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" .. ..$ process:List of 1 .. .. ..$ pid: int 50344 ..- attr(*, "options")=List of 35 .. ..$ worker : chr "localhost" .. .. ..- attr(*, "localhost")= logi TRUE .. ..$ master : chr "localhost" .. ..$ port : int 22680 .. ..$ connectTimeout : num 120 .. ..$ timeout : num 120 .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" .. ..$ homogeneous : logi TRUE .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=ClusterRegistry.R:195252:CRANWIN"| __truncated__ .. ..$ rscript_envs : NULL .. ..$ rscript_libs : NULL .. ..$ rscript_startup : NULL .. ..$ rscript_sh : chr "cmd" .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... .. ..$ methods : logi TRUE .. ..$ socketOptions : chr "no-delay" .. ..$ useXDR : logi FALSE .. ..$ outfile : chr "/dev/null" .. ..$ renice : int NA .. ..$ rshcmd : NULL .. ..$ user : chr(0) .. ..$ revtunnel : logi FALSE .. ..$ rshlogfile : NULL .. ..$ rshopts : chr(0) .. ..$ rank : int 0 .. ..$ manual : logi FALSE .. ..$ dryrun : logi FALSE .. ..$ quiet : logi FALSE .. ..$ setup_strategy : chr "parallel" .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ .. ..$ rshcmd_label : NULL .. ..$ rsh_call : NULL .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ .. ..$ localMachine : logi TRUE .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", "cmd", "sh"), default_packages = c("datasets", "utils", "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", "parallel"), action = c("launch", "options"), verbose = FALSE) .. ..$ arguments :List of 28 .. .. ..$ worker : chr "localhost" .. .. ..$ master : NULL .. .. ..$ port : int 22680 .. .. ..$ connectTimeout : num 120 .. .. ..$ timeout : num 120 .. .. ..$ rscript : NULL .. .. ..$ homogeneous : NULL .. .. ..$ rscript_args : NULL .. .. ..$ rscript_envs : NULL .. .. ..$ rscript_libs : NULL .. .. ..$ rscript_startup : NULL .. .. ..$ rscript_sh : chr [1:3] "auto" "cmd" "sh" .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... .. .. ..$ methods : logi TRUE .. .. ..$ socketOptions : chr "no-delay" .. .. ..$ useXDR : logi FALSE .. .. ..$ outfile : chr "/dev/null" .. .. ..$ renice : int NA .. .. ..$ rshcmd : NULL .. .. ..$ user : NULL .. .. ..$ revtunnel : logi NA .. .. ..$ rshlogfile : NULL .. .. ..$ rshopts : NULL .. .. ..$ rank : int 1 .. .. ..$ manual : logi FALSE .. .. ..$ dryrun : logi FALSE .. .. ..$ quiet : logi FALSE .. .. ..$ setup_strategy : chr "parallel" .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" - attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" Socket cluster with 1 nodes where 1 node is on host 'localhost' (R Under development (unstable) (2024-03-25 r86192 ucrt), platform x86_64-w64-mingw32) Starting single-worker cluster ... DONE Socket cluster with 1 nodes where 1 node is on host 'localhost' (R Under development (unstable) (2024-03-25 r86192 ucrt), platform x86_64-w64-mingw32) Stopping single-worker cluster ... NULL Stopping single-worker cluster ... DONE Testing with 1 cores ... DONE Testing with 2 cores ... Available cores: 2 Stopping any running cluster ... Stopping any running cluster ... DONE Starting cluster ... Starting cluster ... DONE Starting dual-worker cluster ... [17:25:56.064] [local output] makeClusterPSOCK() ... [17:25:56.067] [local output] Workers: [n = 2] 'localhost', 'localhost' [17:25:56.069] [local output] Base port: 38690 [17:25:56.069] [local output] Getting setup options for 2 cluster nodes ... [17:25:56.070] [local output] - Node 1 of 2 ... [17:25:56.070] [local output] localMachine=TRUE => revtunnel=FALSE [17:25:56.072] [local output] Rscript port: 38690 [17:25:56.072] [local output] - Node 2 of 2 ... [17:25:56.073] [local output] localMachine=TRUE => revtunnel=FALSE [17:25:56.074] [local output] Rscript port: 38690 [17:25:56.074] [local output] Getting setup options for 2 cluster nodes ... done [17:25:56.074] [local output] - Parallel setup requested for some PSOCK nodes [17:25:56.075] [local output] Setting up PSOCK nodes in parallel [17:25:56.075] List of 36 [17:25:56.075] $ worker : chr "localhost" [17:25:56.075] ..- attr(*, "localhost")= logi TRUE [17:25:56.075] $ master : chr "localhost" [17:25:56.075] $ port : int 38690 [17:25:56.075] $ connectTimeout : num 120 [17:25:56.075] $ timeout : num 120 [17:25:56.075] $ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [17:25:56.075] $ homogeneous : logi TRUE [17:25:56.075] $ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=ClusterRegistry.R:195252:CRANWIN"| __truncated__ [17:25:56.075] $ rscript_envs : NULL [17:25:56.075] $ rscript_libs : NULL [17:25:56.075] $ rscript_startup : NULL [17:25:56.075] $ rscript_sh : chr "cmd" [17:25:56.075] $ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [17:25:56.075] $ methods : logi TRUE [17:25:56.075] $ socketOptions : chr "no-delay" [17:25:56.075] $ useXDR : logi FALSE [17:25:56.075] $ outfile : chr "/dev/null" [17:25:56.075] $ renice : int NA [17:25:56.075] $ rshcmd : NULL [17:25:56.075] $ user : chr(0) [17:25:56.075] $ revtunnel : logi FALSE [17:25:56.075] $ rshlogfile : NULL [17:25:56.075] $ rshopts : chr(0) [17:25:56.075] $ rank : int 1 [17:25:56.075] $ manual : logi FALSE [17:25:56.075] $ dryrun : logi FALSE [17:25:56.075] $ quiet : logi FALSE [17:25:56.075] $ setup_strategy : chr "parallel" [17:25:56.075] $ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [17:25:56.075] $ pidfile : chr "D:/temp/Rtmp8kzb1X/worker.rank=1.parallelly.parent=195252.2fab41c084fcf.pid" [17:25:56.075] $ rshcmd_label : NULL [17:25:56.075] $ rsh_call : NULL [17:25:56.075] $ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [17:25:56.075] $ localMachine : logi TRUE [17:25:56.075] $ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [17:25:56.075] master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [17:25:56.075] 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [17:25:56.075] 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [17:25:56.075] rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [17:25:56.075] "cmd", "sh"), default_packages = c("datasets", "utils", "grDevices", [17:25:56.075] "graphics", "stats", if (methods) "methods"), methods = TRUE, socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [17:25:56.075] "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [17:25:56.075] FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [17:25:56.075] NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [17:25:56.075] NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [17:25:56.075] setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [17:25:56.075] "parallel"), action = c("launch", "options"), verbose = FALSE) [17:25:56.075] $ arguments :List of 28 [17:25:56.075] ..$ worker : chr "localhost" [17:25:56.075] ..$ master : NULL [17:25:56.075] ..$ port : int 38690 [17:25:56.075] ..$ connectTimeout : num 120 [17:25:56.075] ..$ timeout : num 120 [17:25:56.075] ..$ rscript : NULL [17:25:56.075] ..$ homogeneous : NULL [17:25:56.075] ..$ rscript_args : NULL [17:25:56.075] ..$ rscript_envs : NULL [17:25:56.075] ..$ rscript_libs : NULL [17:25:56.075] ..$ rscript_startup : NULL [17:25:56.075] ..$ rscript_sh : chr [1:3] "auto" "cmd" "sh" [17:25:56.075] ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [17:25:56.075] ..$ methods : logi TRUE [17:25:56.075] ..$ socketOptions : chr "no-delay" [17:25:56.075] ..$ useXDR : logi FALSE [17:25:56.075] ..$ outfile : chr "/dev/null" [17:25:56.075] ..$ renice : int NA [17:25:56.075] ..$ rshcmd : NULL [17:25:56.075] ..$ user : NULL [17:25:56.075] ..$ revtunnel : logi NA [17:25:56.075] ..$ rshlogfile : NULL [17:25:56.075] ..$ rshopts : NULL [17:25:56.075] ..$ rank : int 1 [17:25:56.075] ..$ manual : logi FALSE [17:25:56.075] ..$ dryrun : logi FALSE [17:25:56.075] ..$ quiet : logi FALSE [17:25:56.075] ..$ setup_strategy : chr "parallel" [17:25:56.075] - attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [17:25:56.099] [local output] System call to launch all workers: [17:25:56.099] [local output] "D:/RCompile/recent/R/bin/x64/Rscript" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "#label=ClusterRegistry.R:195252:CRANWIN3:CRAN" -e "try(suppressWarnings(cat(Sys.getpid(),file=\"D:/temp/Rtmp8kzb1X/worker.rank=1.parallelly.parent=195252.2fab41c084fcf.pid\")), silent = TRUE)" -e "options(socketOptions = \"no-delay\")" -e "workRSOCK <- tryCatch(parallel:::.workRSOCK, error=function(e) parallel:::.slaveRSOCK); workRSOCK()" MASTER=localhost PORT=38690 OUT=/dev/null TIMEOUT=120 XDR=FALSE SETUPTIMEOUT=120 SETUPSTRATEGY=parallel [17:25:56.099] [local output] Starting PSOCK main server [17:25:56.105] [local output] Workers launched [17:25:56.105] [local output] Waiting for workers to connect back [17:25:56.105] - [local output] 0 workers out of 2 ready [17:25:56.268] - [local output] 0 workers out of 2 ready [17:25:56.269] - [local output] 1 workers out of 2 ready [17:25:56.269] - [local output] 2 workers out of 2 ready [17:25:56.269] [local output] Launching of workers completed [17:25:56.269] [local output] Collecting session information from workers [17:25:56.270] [local output] - Worker #1 of 2 [17:25:56.271] [local output] - Worker #2 of 2 [17:25:56.271] [local output] makeClusterPSOCK() ... done List of 2 $ :List of 4 ..$ con : 'sockconn' int 4 .. ..- attr(*, "conn_id")= ..$ host : chr "localhost" .. ..- attr(*, "localhost")= logi TRUE ..$ rank : int 0 ..$ session_info:List of 6 .. ..$ r :List of 16 .. .. ..$ platform : chr "x86_64-w64-mingw32" .. .. ..$ arch : chr "x86_64" .. .. ..$ os : chr "mingw32" .. .. ..$ crt : chr "ucrt" .. .. ..$ system : chr "x86_64, mingw32" .. .. ..$ status : chr "Under development (unstable)" .. .. ..$ major : chr "4" .. .. ..$ minor : chr "4.0" .. .. ..$ year : chr "2024" .. .. ..$ month : chr "03" .. .. ..$ day : chr "25" .. .. ..$ svn rev : chr "86192" .. .. ..$ language : chr "R" .. .. ..$ version.string: chr "R Under development (unstable) (2024-03-25 r86192 ucrt)" .. .. ..$ nickname : chr "Unsuffered Consequences" .. .. ..$ os.type : chr "windows" .. ..$ system :List of 8 .. .. ..$ sysname : chr "Windows" .. .. ..$ release : chr "Server x64" .. .. ..$ version : chr "build 20348" .. .. ..$ nodename : chr "CRANWIN3" .. .. ..$ machine : chr "x86-64" .. .. ..$ login : chr "CRAN" .. .. ..$ user : chr "CRAN" .. .. ..$ effective_user: chr "CRAN" .. ..$ libs : chr [1:2] "D:/temp/RtmpAVtqMV/RLIBS_30708245f64e7" "D:/RCompile/recent/R/library" .. ..$ pkgs : NULL .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" .. ..$ process:List of 1 .. .. ..$ pid: int 34820 ..- attr(*, "options")=List of 35 .. ..$ worker : chr "localhost" .. .. ..- attr(*, "localhost")= logi TRUE .. ..$ master : chr "localhost" .. ..$ port : int 38690 .. ..$ connectTimeout : num 120 .. ..$ timeout : num 120 .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" .. ..$ homogeneous : logi TRUE .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=ClusterRegistry.R:195252:CRANWIN"| __truncated__ .. ..$ rscript_envs : NULL .. ..$ rscript_libs : NULL .. ..$ rscript_startup : NULL .. ..$ rscript_sh : chr "cmd" .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... .. ..$ methods : logi TRUE .. ..$ socketOptions : chr "no-delay" .. ..$ useXDR : logi FALSE .. ..$ outfile : chr "/dev/null" .. ..$ renice : int NA .. ..$ rshcmd : NULL .. ..$ user : chr(0) .. ..$ revtunnel : logi FALSE .. ..$ rshlogfile : NULL .. ..$ rshopts : chr(0) .. ..$ rank : int 0 .. ..$ manual : logi FALSE .. ..$ dryrun : logi FALSE .. ..$ quiet : logi FALSE .. ..$ setup_strategy : chr "parallel" .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ .. ..$ rshcmd_label : NULL .. ..$ rsh_call : NULL .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ .. ..$ localMachine : logi TRUE .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", "cmd", "sh"), default_packages = c("datasets", "utils", "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", "parallel"), action = c("launch", "options"), verbose = FALSE) .. ..$ arguments :List of 28 .. .. ..$ worker : chr "localhost" .. .. ..$ master : NULL .. .. ..$ port : int 38690 .. .. ..$ connectTimeout : num 120 .. .. ..$ timeout : num 120 .. .. ..$ rscript : NULL .. .. ..$ homogeneous : NULL .. .. ..$ rscript_args : NULL .. .. ..$ rscript_envs : NULL .. .. ..$ rscript_libs : NULL .. .. ..$ rscript_startup : NULL .. .. ..$ rscript_sh : chr [1:3] "auto" "cmd" "sh" .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... .. .. ..$ methods : logi TRUE .. .. ..$ socketOptions : chr "no-delay" .. .. ..$ useXDR : logi FALSE .. .. ..$ outfile : chr "/dev/null" .. .. ..$ renice : int NA .. .. ..$ rshcmd : NULL .. .. ..$ user : NULL .. .. ..$ revtunnel : logi NA .. .. ..$ rshlogfile : NULL .. .. ..$ rshopts : NULL .. .. ..$ rank : int 1 .. .. ..$ manual : logi FALSE .. .. ..$ dryrun : logi FALSE .. .. ..$ quiet : logi FALSE .. .. ..$ setup_strategy : chr "parallel" .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" $ :List of 4 ..$ con : 'sockconn' int 5 .. ..- attr(*, "conn_id")= ..$ host : chr "localhost" .. ..- attr(*, "localhost")= logi TRUE ..$ rank : int 0 ..$ session_info:List of 6 .. ..$ r :List of 16 .. .. ..$ platform : chr "x86_64-w64-mingw32" .. .. ..$ arch : chr "x86_64" .. .. ..$ os : chr "mingw32" .. .. ..$ crt : chr "ucrt" .. .. ..$ system : chr "x86_64, mingw32" .. .. ..$ status : chr "Under development (unstable)" .. .. ..$ major : chr "4" .. .. ..$ minor : chr "4.0" .. .. ..$ year : chr "2024" .. .. ..$ month : chr "03" .. .. ..$ day : chr "25" .. .. ..$ svn rev : chr "86192" .. .. ..$ language : chr "R" .. .. ..$ version.string: chr "R Under development (unstable) (2024-03-25 r86192 ucrt)" .. .. ..$ nickname : chr "Unsuffered Consequences" .. .. ..$ os.type : chr "windows" .. ..$ system :List of 8 .. .. ..$ sysname : chr "Windows" .. .. ..$ release : chr "Server x64" .. .. ..$ version : chr "build 20348" .. .. ..$ nodename : chr "CRANWIN3" .. .. ..$ machine : chr "x86-64" .. .. ..$ login : chr "CRAN" .. .. ..$ user : chr "CRAN" .. .. ..$ effective_user: chr "CRAN" .. ..$ libs : chr [1:2] "D:/temp/RtmpAVtqMV/RLIBS_30708245f64e7" "D:/RCompile/recent/R/library" .. ..$ pkgs : NULL .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" .. ..$ process:List of 1 .. .. ..$ pid: int 76288 ..- attr(*, "options")=List of 35 .. ..$ worker : chr "localhost" .. .. ..- attr(*, "localhost")= logi TRUE .. ..$ master : chr "localhost" .. ..$ port : int 38690 .. ..$ connectTimeout : num 120 .. ..$ timeout : num 120 .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" .. ..$ homogeneous : logi TRUE .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=ClusterRegistry.R:195252:CRANWIN"| __truncated__ .. ..$ rscript_envs : NULL .. ..$ rscript_libs : NULL .. ..$ rscript_startup : NULL .. ..$ rscript_sh : chr "cmd" .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... .. ..$ methods : logi TRUE .. ..$ socketOptions : chr "no-delay" .. ..$ useXDR : logi FALSE .. ..$ outfile : chr "/dev/null" .. ..$ renice : int NA .. ..$ rshcmd : NULL .. ..$ user : chr(0) .. ..$ revtunnel : logi FALSE .. ..$ rshlogfile : NULL .. ..$ rshopts : chr(0) .. ..$ rank : int 0 .. ..$ manual : logi FALSE .. ..$ dryrun : logi FALSE .. ..$ quiet : logi FALSE .. ..$ setup_strategy : chr "parallel" .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ .. ..$ rshcmd_label : NULL .. ..$ rsh_call : NULL .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ .. ..$ localMachine : logi TRUE .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", "cmd", "sh"), default_packages = c("datasets", "utils", "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", "parallel"), action = c("launch", "options"), verbose = FALSE) .. ..$ arguments :List of 28 .. .. ..$ worker : chr "localhost" .. .. ..$ master : NULL .. .. ..$ port : int 38690 .. .. ..$ connectTimeout : num 120 .. .. ..$ timeout : num 120 .. .. ..$ rscript : NULL .. .. ..$ homogeneous : NULL .. .. ..$ rscript_args : NULL .. .. ..$ rscript_envs : NULL .. .. ..$ rscript_libs : NULL .. .. ..$ rscript_startup : NULL .. .. ..$ rscript_sh : chr [1:3] "auto" "cmd" "sh" .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... .. .. ..$ methods : logi TRUE .. .. ..$ socketOptions : chr "no-delay" .. .. ..$ useXDR : logi FALSE .. .. ..$ outfile : chr "/dev/null" .. .. ..$ renice : int NA .. .. ..$ rshcmd : NULL .. .. ..$ user : NULL .. .. ..$ revtunnel : logi NA .. .. ..$ rshlogfile : NULL .. .. ..$ rshopts : NULL .. .. ..$ rank : int 1 .. .. ..$ manual : logi FALSE .. .. ..$ dryrun : logi FALSE .. .. ..$ quiet : logi FALSE .. .. ..$ setup_strategy : chr "parallel" .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" - attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" Socket cluster with 2 nodes where 2 nodes are on host 'localhost' (R Under development (unstable) (2024-03-25 r86192 ucrt), platform x86_64-w64-mingw32) Starting duel-worker cluster ... DONE Starting single-worker cluster ... [17:25:56.346] [local output] makeClusterPSOCK() ... [17:25:56.348] [local output] Workers: [n = 1] 'localhost' [17:25:56.351] [local output] Base port: 32767 [17:25:56.351] [local output] Getting setup options for 1 cluster nodes ... [17:25:56.351] [local output] - Node 1 of 1 ... [17:25:56.352] [local output] localMachine=TRUE => revtunnel=FALSE [17:25:56.353] [local output] Rscript port: 32767 [17:25:56.354] [local output] Getting setup options for 1 cluster nodes ... done [17:25:56.354] [local output] - Parallel setup requested for some PSOCK nodes [17:25:56.354] [local output] Setting up PSOCK nodes in parallel [17:25:56.354] List of 36 [17:25:56.354] $ worker : chr "localhost" [17:25:56.354] ..- attr(*, "localhost")= logi TRUE [17:25:56.354] $ master : chr "localhost" [17:25:56.354] $ port : int 32767 [17:25:56.354] $ connectTimeout : num 120 [17:25:56.354] $ timeout : num 120 [17:25:56.354] $ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [17:25:56.354] $ homogeneous : logi TRUE [17:25:56.354] $ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=ClusterRegistry.R:195252:CRANWIN"| __truncated__ [17:25:56.354] $ rscript_envs : NULL [17:25:56.354] $ rscript_libs : NULL [17:25:56.354] $ rscript_startup : NULL [17:25:56.354] $ rscript_sh : chr "cmd" [17:25:56.354] $ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [17:25:56.354] $ methods : logi TRUE [17:25:56.354] $ socketOptions : chr "no-delay" [17:25:56.354] $ useXDR : logi FALSE [17:25:56.354] $ outfile : chr "/dev/null" [17:25:56.354] $ renice : int NA [17:25:56.354] $ rshcmd : NULL [17:25:56.354] $ user : chr(0) [17:25:56.354] $ revtunnel : logi FALSE [17:25:56.354] $ rshlogfile : NULL [17:25:56.354] $ rshopts : chr(0) [17:25:56.354] $ rank : int 1 [17:25:56.354] $ manual : logi FALSE [17:25:56.354] $ dryrun : logi FALSE [17:25:56.354] $ quiet : logi FALSE [17:25:56.354] $ setup_strategy : chr "parallel" [17:25:56.354] $ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [17:25:56.354] $ pidfile : chr "D:/temp/Rtmp8kzb1X/worker.rank=1.parallelly.parent=195252.2fab45b0372a3.pid" [17:25:56.354] $ rshcmd_label : NULL [17:25:56.354] $ rsh_call : NULL [17:25:56.354] $ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [17:25:56.354] $ localMachine : logi TRUE [17:25:56.354] $ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [17:25:56.354] master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [17:25:56.354] 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [17:25:56.354] 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [17:25:56.354] rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [17:25:56.354] "cmd", "sh"), default_packages = c("datasets", "utils", "grDevices", [17:25:56.354] "graphics", "stats", if (methods) "methods"), methods = TRUE, socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [17:25:56.354] "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [17:25:56.354] FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [17:25:56.354] NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [17:25:56.354] NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [17:25:56.354] setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [17:25:56.354] "parallel"), action = c("launch", "options"), verbose = FALSE) [17:25:56.354] $ arguments :List of 28 [17:25:56.354] ..$ worker : chr "localhost" [17:25:56.354] ..$ master : NULL [17:25:56.354] ..$ port : int 32767 [17:25:56.354] ..$ connectTimeout : num 120 [17:25:56.354] ..$ timeout : num 120 [17:25:56.354] ..$ rscript : NULL [17:25:56.354] ..$ homogeneous : NULL [17:25:56.354] ..$ rscript_args : NULL [17:25:56.354] ..$ rscript_envs : NULL [17:25:56.354] ..$ rscript_libs : NULL [17:25:56.354] ..$ rscript_startup : NULL [17:25:56.354] ..$ rscript_sh : chr [1:3] "auto" "cmd" "sh" [17:25:56.354] ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [17:25:56.354] ..$ methods : logi TRUE [17:25:56.354] ..$ socketOptions : chr "no-delay" [17:25:56.354] ..$ useXDR : logi FALSE [17:25:56.354] ..$ outfile : chr "/dev/null" [17:25:56.354] ..$ renice : int NA [17:25:56.354] ..$ rshcmd : NULL [17:25:56.354] ..$ user : NULL [17:25:56.354] ..$ revtunnel : logi NA [17:25:56.354] ..$ rshlogfile : NULL [17:25:56.354] ..$ rshopts : NULL [17:25:56.354] ..$ rank : int 1 [17:25:56.354] ..$ manual : logi FALSE [17:25:56.354] ..$ dryrun : logi FALSE [17:25:56.354] ..$ quiet : logi FALSE [17:25:56.354] ..$ setup_strategy : chr "parallel" [17:25:56.354] - attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [17:25:56.377] [local output] System call to launch all workers: [17:25:56.377] [local output] "D:/RCompile/recent/R/bin/x64/Rscript" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "#label=ClusterRegistry.R:195252:CRANWIN3:CRAN" -e "try(suppressWarnings(cat(Sys.getpid(),file=\"D:/temp/Rtmp8kzb1X/worker.rank=1.parallelly.parent=195252.2fab45b0372a3.pid\")), silent = TRUE)" -e "options(socketOptions = \"no-delay\")" -e "workRSOCK <- tryCatch(parallel:::.workRSOCK, error=function(e) parallel:::.slaveRSOCK); workRSOCK()" MASTER=localhost PORT=32767 OUT=/dev/null TIMEOUT=120 XDR=FALSE SETUPTIMEOUT=120 SETUPSTRATEGY=parallel [17:25:56.377] [local output] Starting PSOCK main server [17:25:56.381] [local output] Workers launched [17:25:56.381] [local output] Waiting for workers to connect back [17:25:56.382] - [local output] 0 workers out of 1 ready [17:25:56.537] - [local output] 0 workers out of 1 ready [17:25:56.538] - [local output] 1 workers out of 1 ready [17:25:56.538] [local output] Launching of workers completed [17:25:56.538] [local output] Collecting session information from workers [17:25:56.539] [local output] - Worker #1 of 1 [17:25:56.539] [local output] makeClusterPSOCK() ... done List of 1 $ :List of 4 ..$ con : 'sockconn' int 4 .. ..- attr(*, "conn_id")= ..$ host : chr "localhost" .. ..- attr(*, "localhost")= logi TRUE ..$ rank : int 0 ..$ session_info:List of 6 .. ..$ r :List of 16 .. .. ..$ platform : chr "x86_64-w64-mingw32" .. .. ..$ arch : chr "x86_64" .. .. ..$ os : chr "mingw32" .. .. ..$ crt : chr "ucrt" .. .. ..$ system : chr "x86_64, mingw32" .. .. ..$ status : chr "Under development (unstable)" .. .. ..$ major : chr "4" .. .. ..$ minor : chr "4.0" .. .. ..$ year : chr "2024" .. .. ..$ month : chr "03" .. .. ..$ day : chr "25" .. .. ..$ svn rev : chr "86192" .. .. ..$ language : chr "R" .. .. ..$ version.string: chr "R Under development (unstable) (2024-03-25 r86192 ucrt)" .. .. ..$ nickname : chr "Unsuffered Consequences" .. .. ..$ os.type : chr "windows" .. ..$ system :List of 8 .. .. ..$ sysname : chr "Windows" .. .. ..$ release : chr "Server x64" .. .. ..$ version : chr "build 20348" .. .. ..$ nodename : chr "CRANWIN3" .. .. ..$ machine : chr "x86-64" .. .. ..$ login : chr "CRAN" .. .. ..$ user : chr "CRAN" .. .. ..$ effective_user: chr "CRAN" .. ..$ libs : chr [1:2] "D:/temp/RtmpAVtqMV/RLIBS_30708245f64e7" "D:/RCompile/recent/R/library" .. ..$ pkgs : NULL .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" .. ..$ process:List of 1 .. .. ..$ pid: int 195876 ..- attr(*, "options")=List of 35 .. ..$ worker : chr "localhost" .. .. ..- attr(*, "localhost")= logi TRUE .. ..$ master : chr "localhost" .. ..$ port : int 32767 .. ..$ connectTimeout : num 120 .. ..$ timeout : num 120 .. ..$ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" .. ..$ homogeneous : logi TRUE .. ..$ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=ClusterRegistry.R:195252:CRANWIN"| __truncated__ .. ..$ rscript_envs : NULL .. ..$ rscript_libs : NULL .. ..$ rscript_startup : NULL .. ..$ rscript_sh : chr "cmd" .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... .. ..$ methods : logi TRUE .. ..$ socketOptions : chr "no-delay" .. ..$ useXDR : logi FALSE .. ..$ outfile : chr "/dev/null" .. ..$ renice : int NA .. ..$ rshcmd : NULL .. ..$ user : chr(0) .. ..$ revtunnel : logi FALSE .. ..$ rshlogfile : NULL .. ..$ rshopts : chr(0) .. ..$ rank : int 0 .. ..$ manual : logi FALSE .. ..$ dryrun : logi FALSE .. ..$ quiet : logi FALSE .. ..$ setup_strategy : chr "parallel" .. ..$ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ .. ..$ rshcmd_label : NULL .. ..$ rsh_call : NULL .. ..$ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ .. ..$ localMachine : logi TRUE .. ..$ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", "cmd", "sh"), default_packages = c("datasets", "utils", "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", "parallel"), action = c("launch", "options"), verbose = FALSE) .. ..$ arguments :List of 28 .. .. ..$ worker : chr "localhost" .. .. ..$ master : NULL .. .. ..$ port : int 32767 .. .. ..$ connectTimeout : num 120 .. .. ..$ timeout : num 120 .. .. ..$ rscript : NULL .. .. ..$ homogeneous : NULL .. .. ..$ rscript_args : NULL .. .. ..$ rscript_envs : NULL .. .. ..$ rscript_libs : NULL .. .. ..$ rscript_startup : NULL .. .. ..$ rscript_sh : chr [1:3] "auto" "cmd" "sh" .. .. ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... .. .. ..$ methods : logi TRUE .. .. ..$ socketOptions : chr "no-delay" .. .. ..$ useXDR : logi FALSE .. .. ..$ outfile : chr "/dev/null" .. .. ..$ renice : int NA .. .. ..$ rshcmd : NULL .. .. ..$ user : NULL .. .. ..$ revtunnel : logi NA .. .. ..$ rshlogfile : NULL .. .. ..$ rshopts : NULL .. .. ..$ rank : int 1 .. .. ..$ manual : logi FALSE .. .. ..$ dryrun : logi FALSE .. .. ..$ quiet : logi FALSE .. .. ..$ setup_strategy : chr "parallel" .. ..- attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" ..- attr(*, "class")= chr [1:2] "RichSOCKnode" "SOCK0node" - attr(*, "class")= chr [1:3] "RichSOCKcluster" "SOCKcluster" "cluster" Socket cluster with 1 nodes where 1 node is on host 'localhost' (R Under development (unstable) (2024-03-25 r86192 ucrt), platform x86_64-w64-mingw32) Starting single-worker cluster ... DONE Socket cluster with 1 nodes where 1 node is on host 'localhost' (R Under development (unstable) (2024-03-25 r86192 ucrt), platform x86_64-w64-mingw32) Stopping single-worker cluster ... NULL Stopping single-worker cluster ... DONE Testing with 2 cores ... DONE > > > message("*** ClusterRegistry() - exceptions ...") *** ClusterRegistry() - exceptions ... > > res <- tryCatch(ClusterRegistry(action = "start", workers = TRUE), error = identity) > stopifnot(inherits(res, "error")) > > message("*** ClusterRegistry() - exceptions ... DONE") *** ClusterRegistry() - exceptions ... DONE > > > message("*** ClusterRegistry() ... DONE") *** ClusterRegistry() ... DONE > > source("incl/end.R") [17:25:56.579] plan(): Setting new future strategy stack: [17:25:56.580] List of future strategies: [17:25:56.580] 1. FutureStrategy: [17:25:56.580] - args: function (..., envir = parent.frame(), workers = "") [17:25:56.580] - tweaked: FALSE [17:25:56.580] - call: future::plan(oplan) [17:25:56.594] plan(): nbrOfWorkers() = 1 Failed to undo environment variables: - Expected environment variables: [n=204] '!ExitCode', 'ALLUSERSPROFILE', 'APPDATA', 'BIBINPUTS', 'BINDIR', 'BSTINPUTS', 'COMMONPROGRAMFILES', 'COMPUTERNAME', 'COMSPEC', 'CURL_CA_BUNDLE', 'CYGWIN', 'CommonProgramFiles(x86)', 'CommonProgramW6432', 'DriverData', 'HOME', 'HOMEDRIVE', 'HOMEPATH', 'JAGS_ROOT', 'JAVA_HOME', 'LANGUAGE', 'LC_COLLATE', 'LC_MONETARY', 'LC_TIME', 'LOCALAPPDATA', 'LOGONSERVER', 'LS_HOME', 'LS_LICENSE_PATH', 'MAKE', 'MAKEFLAGS', 'MAKELEVEL', 'MFLAGS', 'MSMPI_BENCHMARKS', 'MSMPI_BIN', 'MSYS2_ENV_CONV_EXCL', 'NUMBER_OF_PROCESSORS', 'OCL', 'OMP_THREAD_LIMIT', 'OS', 'PATH', 'PATHEXT', 'PROCESSOR_ARCHITECTURE', 'PROCESSOR_IDENTIFIER', 'PROCESSOR_LEVEL', 'PROCESSOR_REVISION', 'PROGRAMFILES', 'PROMPT', 'PSModulePath', 'PUBLIC', 'PWD', 'ProgramData', 'ProgramFiles(x86)', 'ProgramW6432', 'RTOOLS43_HOME', 'RTOOLS44_HOME', 'R_ARCH', 'R_BROWSER', 'R_BZIPCMD', 'R_CMD', 'R_COMPILED_BY', 'R_CRAN_WEB', 'R_CUSTOM_TOOLS_PATH', 'R_CUSTOM_TOOLS_SOFT', 'R_DOC_DIR', 'R_ENVIRON_USER', 'R_GSCMD', 'R_GZIPCMD', 'R_HOME', 'R_INCLUDE_DIR', 'R_INSTALL_TAR', 'R_LIBS', 'R_LIBS_SITE', 'R_LIBS_USER', 'R_MAX_NUM_DLLS', 'R_OSTYPE', 'R_PAPERSIZE', 'R_PAPERSIZE_USER', 'R_PARALLELLY_MAKENODEPSOCK_AUTOKILL', 'R_PARALLELLY_MAKENODEPSOCK_CONNECTTIMEOUT', 'R_PARALLELLY_MAKENODEPSOCK_RSCRIPT_LABEL', 'R_PARALLELLY_MAKENODEPSOCK_SESSIONINFO_PKGS', 'R_PARALLELLY_MAKENODEPSOCK_TIMEOUT', 'R_PARALLELLY_RANDOM_PORTS', 'R_PARALLEL_PORT', 'R_RD4PDF', 'R_RTOOLS44_PATH', 'R_SCRIPT_LEGACY', 'R_SHARE_DIR', 'R_TESTS', 'R_UNZIPCMD', 'R_USER', 'R_VERSION', 'R_ZIPCMD', 'SED', 'SHLVL', 'SYSTEMDRIVE', 'SYSTEMROOT', 'TAR', 'TAR_OPTIONS', 'TEMP', 'TERM', 'TEXINPUTS', 'TMP', 'TMPDIR', 'USERDOMAIN', 'USERDOMAIN_ROAMINGPROFILE', 'USERNAME', 'USERPROFILE', 'WINDIR', '_', '_R_CHECK_AUTOCONF_', '_R_CHECK_BOGUS_RETURN_', '_R_CHECK_BROWSER_NONINTERACTIVE_', '_R_CHECK_BUILD_VIGNETTES_SEPARATELY_', '_R_CHECK_CODETOOLS_PROFILE_', '_R_CHECK_CODE_ASSIGN_TO_GLOBALENV_', '_R_CHECK_CODE_ATTACH_', '_R_CHECK_CODE_CLASS_IS_STRING_', '_R_CHECK_CODE_DATA_INTO_GLOBALENV_', '_R_CHECK_CODE_USAGE_VIA_NAMESPACES_', '_R_CHECK_CODE_USAGE_WITHOUT_LOADING_', '_R_CHECK_CODE_USAGE_WITH_ONLY_BASE_ATTACHED_', '_R_CHECK_CODOC_VARIABLES_IN_USAGES_', '_R_CHECK_COMPACT_DATA2_', '_R_CHECK_COMPILATION_FLAGS_', '_R_CHECK_CONNECTIONS_LEFT_OPEN_', '_R_CHECK_CRAN_INCOMING_', '_R_CHECK_CRAN_INCOMING_CHECK_FILE_URIS_', '_R_CHECK_CRAN_INCOMING_CHECK_URLS_IN_PARALLEL_', '_R_CHECK_CRAN_INCOMING_NOTE_GNU_MAKE_', '_R_CHECK_CRAN_INCOMING_REMOTE_', '_R_CHECK_CRAN_INCOMING_USE_ASPELL_', '_R_CHECK_DATALIST_', '_R_CHECK_DEPRECATED_DEFUNCT_', '_R_CHECK_DOC_SIZES2_', '_R_CHECK_DOT_FIRSTLIB_', '_R_CHECK_DOT_INTERNAL_', '_R_CHECK_EXAMPLE_TIMING_THRESHOLD_', '_R_CHECK_EXECUTABLES_', '_R_CHECK_EXECUTABLES_EXCLUSIONS_', '_R_CHECK_FF_CALLS_', '_R_CHECK_FF_DUP_', '_R_CHECK_FORCE_SUGGESTS_', '_R_CHECK_FUTURE_FILE_TIMESTAMPS_', '_R_CHECK_FUTURE_FILE_TIMESTAMPS_LEEWAY_', '_R_CHECK_HAVE_MYSQL_', '_R_CHECK_HAVE_ODBC_', '_R_CHECK_HAVE_PERL_', '_R_CHECK_HAVE_POSTGRES_', '_R_CHECK_INSTALL_DEPENDS_', '_R_CHECK_INTERNALS2_', '_R_CHECK_LENGTH_1_CONDITION_', '_R_CHECK_LICENSE_', '_R_CHECK_LIMIT_CORES_', '_R_CHECK_MATRIX_DATA_', '_R_CHECK_MBCS_CONVERSION_FAILURE_', '_R_CHECK_NATIVE_ROUTINE_REGISTRATION_', '_R_CHECK_NEWS_IN_PLAIN_TEXT_', '_R_CHECK_NO_RECOMMENDED_', '_R_CHECK_NO_STOP_ON_TEST_ERROR_', '_R_CHECK_ORPHANED_', '_R_CHECK_OVERWRITE_REGISTERED_S3_METHODS_', '_R_CHECK_PACKAGES_USED_IGNORE_UNUSED_IMPORTS_', '_R_CHECK_PACKAGES_USED_IN_TESTS_USE_SUBDIRS_', '_R_CHECK_PACKAGE_DATASETS_SUPPRESS_NOTES_', '_R_CHECK_PACKAGE_NAME_', '_R_CHECK_PKG_SIZES_', '_R_CHECK_PKG_SIZES_THRESHOLD_', '_R_CHECK_PRAGMAS_', '_R_CHECK_RD_EXAMPLES_T_AND_F_', '_R_CHECK_RD_LINE_WIDTHS_', '_R_CHECK_RD_MATH_RENDERING_', '_R_CHECK_RD_NOTE_LOST_BRACES_', '_R_CHECK_RD_VALIDATE_RD2HTML_', '_R_CHECK_REPLACING_IMPORTS_', '_R_CHECK_R_DEPENDS_', '_R_CHECK_S3_METHODS_SHOW_POSSIBLE_ISSUES_', '_R_CHECK_SCREEN_DEVICE_', '_R_CHECK_SERIALIZATION_', '_R_CHECK_SHLIB_OPENMP_FLAGS_', '_R_CHECK_SRC_MINUS_W_IMPLICIT_', '_R_CHECK_SUBDIRS_NOCASE_', '_R_CHECK_SUGGESTS_ONLY_', '_R_CHECK_SYSTEM_CLOCK_', '_R_CHECK_TESTS_NLINES_', '_R_CHECK_TEST_TIMING_', '_R_CHECK_TIMINGS_', '_R_CHECK_TOPLEVEL_FILES_', '_R_CHECK_UNDOC_USE_ALL_NAMES_', '_R_CHECK_UNSAFE_CALLS_', '_R_CHECK_URLS_SHOW_301_STATUS_', '_R_CHECK_VC_DIRS_', '_R_CHECK_VIGNETTES_NLINES_', '_R_CHECK_VIGNETTES_SKIP_RUN_MAYBE_', '_R_CHECK_VIGNETTE_TIMING_', '_R_CHECK_VIGNETTE_TITLES_', '_R_CHECK_WINDOWS_DEVICE_', '_R_CHECK_XREFS_USE_ALIASES_FROM_CRAN_', '_R_CLASS_MATRIX_ARRAY_', '_R_DEPRECATED_IS_R_', '_R_S3_METHOD_LOOKUP_BASEENV_AFTER_GLOBALENV_', '_R_SHLIB_BUILD_OBJECTS_SYMBOL_TABLES_', '__R_CHECK_DOC_FILES_NOTE_IF_ALL_SPECIAL__', 'maj.version', 'nextArg--timingsnextArg--install' - Environment variables still there: [n=0] - Environment variables missing: [n=1] 'MAKEFLAGS' Differences environment variable by environment variable: List of 3 $ name : chr "MAKEFLAGS" $ expected: 'Dlist' chr "" $ actual : 'Dlist' chr NA > > proc.time() user system elapsed 0.65 0.07 1.87