R Under development (unstable) (2024-07-28 r86931 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:26:25.086] plan(): Setting new future strategy stack: [17:26:25.088] List of future strategies: [17:26:25.088] 1. sequential: [17:26:25.088] - args: function (..., envir = parent.frame(), workers = "") [17:26:25.088] - tweaked: FALSE [17:26:25.088] - call: future::plan("sequential") [17:26:25.121] 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:26:25.179] [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:26:25.233] [local output] Workers: [n = 2] 'localhost', 'localhost' [17:26:25.242] [local output] Base port: 25916 [17:26:25.243] [local output] Getting setup options for 2 cluster nodes ... [17:26:25.243] [local output] - Node #1 of 2 ... [17:26:25.244] [local output] localMachine=TRUE => revtunnel=FALSE [17:26:25.246] Testing if worker's PID can be inferred: '"D:/RCompile/recent/R/bin/x64/Rscript" -e "try(suppressWarnings(cat(Sys.getpid(),file=\"D:/temp/Rtmp2ZgXCX/worker.rank=1.parallelly.parent=153728.2588056436b91.pid\")), silent = TRUE)" -e "file.exists(\"D:/temp/Rtmp2ZgXCX/worker.rank=1.parallelly.parent=153728.2588056436b91.pid\")"' [17:26:25.813] - Possible to infer worker's PID: TRUE [17:26:25.814] [local output] Rscript port: 25916 [17:26:25.815] [local output] - Node #2 of 2 ... [17:26:25.816] [local output] localMachine=TRUE => revtunnel=FALSE [17:26:25.818] [local output] Rscript port: 25916 [17:26:25.818] [local output] Getting setup options for 2 cluster nodes ... done [17:26:25.819] [local output] - Parallel setup requested for some PSOCK nodes [17:26:25.820] [local output] Setting up PSOCK nodes in parallel [17:26:25.820] List of 36 [17:26:25.820] $ worker : chr "localhost" [17:26:25.820] ..- attr(*, "localhost")= logi TRUE [17:26:25.820] $ master : chr "localhost" [17:26:25.820] $ port : int 25916 [17:26:25.820] $ connectTimeout : num 120 [17:26:25.820] $ timeout : num 120 [17:26:25.820] $ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [17:26:25.820] $ homogeneous : logi TRUE [17:26:25.820] $ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=ClusterRegistry.R:153728:CRANWIN"| __truncated__ [17:26:25.820] $ rscript_envs : NULL [17:26:25.820] $ rscript_libs : NULL [17:26:25.820] $ rscript_startup : NULL [17:26:25.820] $ rscript_sh : chr [1:2] "cmd" "cmd" [17:26:25.820] $ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [17:26:25.820] $ methods : logi TRUE [17:26:25.820] $ socketOptions : chr "no-delay" [17:26:25.820] $ useXDR : logi FALSE [17:26:25.820] $ outfile : chr "/dev/null" [17:26:25.820] $ renice : int NA [17:26:25.820] $ rshcmd : NULL [17:26:25.820] $ user : chr(0) [17:26:25.820] $ revtunnel : logi FALSE [17:26:25.820] $ rshlogfile : NULL [17:26:25.820] $ rshopts : chr(0) [17:26:25.820] $ rank : int 1 [17:26:25.820] $ manual : logi FALSE [17:26:25.820] $ dryrun : logi FALSE [17:26:25.820] $ quiet : logi FALSE [17:26:25.820] $ setup_strategy : chr "parallel" [17:26:25.820] $ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [17:26:25.820] $ pidfile : chr "D:/temp/Rtmp2ZgXCX/worker.rank=1.parallelly.parent=153728.2588056436b91.pid" [17:26:25.820] $ rshcmd_label : NULL [17:26:25.820] $ rsh_call : NULL [17:26:25.820] $ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [17:26:25.820] $ localMachine : logi TRUE [17:26:25.820] $ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [17:26:25.820] master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [17:26:25.820] 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [17:26:25.820] 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [17:26:25.820] rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [17:26:25.820] "cmd", "sh", "none"), default_packages = c("datasets", "utils", [17:26:25.820] "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [17:26:25.820] socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [17:26:25.820] "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [17:26:25.820] FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [17:26:25.820] NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [17:26:25.820] NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [17:26:25.820] setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [17:26:25.820] "parallel"), action = c("launch", "options"), verbose = FALSE) [17:26:25.820] $ arguments :List of 28 [17:26:25.820] ..$ worker : chr "localhost" [17:26:25.820] ..$ master : NULL [17:26:25.820] ..$ port : int 25916 [17:26:25.820] ..$ connectTimeout : num 120 [17:26:25.820] ..$ timeout : num 120 [17:26:25.820] ..$ rscript : NULL [17:26:25.820] ..$ homogeneous : NULL [17:26:25.820] ..$ rscript_args : NULL [17:26:25.820] ..$ rscript_envs : NULL [17:26:25.820] ..$ rscript_libs : NULL [17:26:25.820] ..$ rscript_startup : NULL [17:26:25.820] ..$ rscript_sh : chr "auto" [17:26:25.820] ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [17:26:25.820] ..$ methods : logi TRUE [17:26:25.820] ..$ socketOptions : chr "no-delay" [17:26:25.820] ..$ useXDR : logi FALSE [17:26:25.820] ..$ outfile : chr "/dev/null" [17:26:25.820] ..$ renice : int NA [17:26:25.820] ..$ rshcmd : NULL [17:26:25.820] ..$ user : NULL [17:26:25.820] ..$ revtunnel : logi NA [17:26:25.820] ..$ rshlogfile : NULL [17:26:25.820] ..$ rshopts : NULL [17:26:25.820] ..$ rank : int 1 [17:26:25.820] ..$ manual : logi FALSE [17:26:25.820] ..$ dryrun : logi FALSE [17:26:25.820] ..$ quiet : logi FALSE [17:26:25.820] ..$ setup_strategy : chr "parallel" [17:26:25.820] - attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [17:26:25.860] [local output] System call to launch all workers: [17:26:25.861] [local output] "D:/RCompile/recent/R/bin/x64/Rscript" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "#label=ClusterRegistry.R:153728:CRANWIN3:CRAN" -e "try(suppressWarnings(cat(Sys.getpid(),file=\"D:/temp/Rtmp2ZgXCX/worker.rank=1.parallelly.parent=153728.2588056436b91.pid\")), silent = TRUE)" -e "options(socketOptions = \"no-delay\")" -e "workRSOCK <- tryCatch(parallel:::.workRSOCK, error=function(e) parallel:::.slaveRSOCK); workRSOCK()" MASTER=localhost PORT=25916 OUT=/dev/null TIMEOUT=120 XDR=FALSE SETUPTIMEOUT=120 SETUPSTRATEGY=parallel [17:26:25.861] [local output] Starting PSOCK main server [17:26:25.870] [local output] Workers launched [17:26:25.870] [local output] Waiting for workers to connect back [17:26:25.871] - [local output] 0 workers out of 2 ready [17:26:26.269] - [local output] 0 workers out of 2 ready [17:26:26.270] - [local output] 1 workers out of 2 ready [17:26:26.288] - [local output] 1 workers out of 2 ready [17:26:26.289] - [local output] 2 workers out of 2 ready [17:26:26.289] [local output] Launching of 2 workers completed [17:26:26.289] [local output] Number of nodes in cluster: 2 [17:26:26.290] [local output] Collecting session information from 2 workers [17:26:26.292] [local output] - Worker #1 of 2 [17:26:26.293] [local output] - Worker #2 of 2 [17:26:26.293] [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 "5.0" .. .. ..$ year : chr "2024" .. .. ..$ month : chr "07" .. .. ..$ day : chr "28" .. .. ..$ svn rev : chr "86931" .. .. ..$ language : chr "R" .. .. ..$ version.string: chr "R Under development (unstable) (2024-07-28 r86931 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/RtmpsXpk4j/RLIBS_1097c668d2fda" "D:/RCompile/recent/R/library" .. ..$ pkgs : NULL .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" .. ..$ process:List of 1 .. .. ..$ pid: int 37584 ..- attr(*, "options")=List of 35 .. ..$ worker : chr "localhost" .. .. ..- attr(*, "localhost")= logi TRUE .. ..$ master : chr "localhost" .. ..$ port : int 25916 .. ..$ 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:153728:CRANWIN"| __truncated__ .. ..$ rscript_envs : NULL .. ..$ rscript_libs : NULL .. ..$ rscript_startup : NULL .. ..$ rscript_sh : chr [1:2] "cmd" "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", "none"), 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 25916 .. .. ..$ 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 "auto" .. .. ..$ 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 "5.0" .. .. ..$ year : chr "2024" .. .. ..$ month : chr "07" .. .. ..$ day : chr "28" .. .. ..$ svn rev : chr "86931" .. .. ..$ language : chr "R" .. .. ..$ version.string: chr "R Under development (unstable) (2024-07-28 r86931 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/RtmpsXpk4j/RLIBS_1097c668d2fda" "D:/RCompile/recent/R/library" .. ..$ pkgs : NULL .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" .. ..$ process:List of 1 .. .. ..$ pid: int 184476 ..- attr(*, "options")=List of 35 .. ..$ worker : chr "localhost" .. .. ..- attr(*, "localhost")= logi TRUE .. ..$ master : chr "localhost" .. ..$ port : int 25916 .. ..$ 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:153728:CRANWIN"| __truncated__ .. ..$ rscript_envs : NULL .. ..$ rscript_libs : NULL .. ..$ rscript_startup : NULL .. ..$ rscript_sh : chr [1:2] "cmd" "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", "none"), 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 25916 .. .. ..$ 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 "auto" .. .. ..$ 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-07-28 r86931 ucrt), platform x86_64-w64-mingw32) Starting duel-worker cluster ... DONE Starting single-worker cluster ... [17:26:26.423] [local output] makeClusterPSOCK() ... [17:26:26.427] [local output] Workers: [n = 1] 'localhost' [17:26:26.430] [local output] Base port: 36389 [17:26:26.430] [local output] Getting setup options for 1 cluster nodes ... [17:26:26.431] [local output] - Node #1 of 1 ... [17:26:26.431] [local output] localMachine=TRUE => revtunnel=FALSE [17:26:26.433] [local output] Rscript port: 36389 [17:26:26.434] [local output] Getting setup options for 1 cluster nodes ... done [17:26:26.434] [local output] - Parallel setup requested for some PSOCK nodes [17:26:26.435] [local output] Setting up PSOCK nodes in parallel [17:26:26.435] List of 36 [17:26:26.435] $ worker : chr "localhost" [17:26:26.435] ..- attr(*, "localhost")= logi TRUE [17:26:26.435] $ master : chr "localhost" [17:26:26.435] $ port : int 36389 [17:26:26.435] $ connectTimeout : num 120 [17:26:26.435] $ timeout : num 120 [17:26:26.435] $ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [17:26:26.435] $ homogeneous : logi TRUE [17:26:26.435] $ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=ClusterRegistry.R:153728:CRANWIN"| __truncated__ [17:26:26.435] $ rscript_envs : NULL [17:26:26.435] $ rscript_libs : NULL [17:26:26.435] $ rscript_startup : NULL [17:26:26.435] $ rscript_sh : chr [1:2] "cmd" "cmd" [17:26:26.435] $ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [17:26:26.435] $ methods : logi TRUE [17:26:26.435] $ socketOptions : chr "no-delay" [17:26:26.435] $ useXDR : logi FALSE [17:26:26.435] $ outfile : chr "/dev/null" [17:26:26.435] $ renice : int NA [17:26:26.435] $ rshcmd : NULL [17:26:26.435] $ user : chr(0) [17:26:26.435] $ revtunnel : logi FALSE [17:26:26.435] $ rshlogfile : NULL [17:26:26.435] $ rshopts : chr(0) [17:26:26.435] $ rank : int 1 [17:26:26.435] $ manual : logi FALSE [17:26:26.435] $ dryrun : logi FALSE [17:26:26.435] $ quiet : logi FALSE [17:26:26.435] $ setup_strategy : chr "parallel" [17:26:26.435] $ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [17:26:26.435] $ pidfile : chr "D:/temp/Rtmp2ZgXCX/worker.rank=1.parallelly.parent=153728.2588064c51952.pid" [17:26:26.435] $ rshcmd_label : NULL [17:26:26.435] $ rsh_call : NULL [17:26:26.435] $ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [17:26:26.435] $ localMachine : logi TRUE [17:26:26.435] $ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [17:26:26.435] master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [17:26:26.435] 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [17:26:26.435] 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [17:26:26.435] rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [17:26:26.435] "cmd", "sh", "none"), default_packages = c("datasets", "utils", [17:26:26.435] "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [17:26:26.435] socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [17:26:26.435] "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [17:26:26.435] FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [17:26:26.435] NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [17:26:26.435] NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [17:26:26.435] setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [17:26:26.435] "parallel"), action = c("launch", "options"), verbose = FALSE) [17:26:26.435] $ arguments :List of 28 [17:26:26.435] ..$ worker : chr "localhost" [17:26:26.435] ..$ master : NULL [17:26:26.435] ..$ port : int 36389 [17:26:26.435] ..$ connectTimeout : num 120 [17:26:26.435] ..$ timeout : num 120 [17:26:26.435] ..$ rscript : NULL [17:26:26.435] ..$ homogeneous : NULL [17:26:26.435] ..$ rscript_args : NULL [17:26:26.435] ..$ rscript_envs : NULL [17:26:26.435] ..$ rscript_libs : NULL [17:26:26.435] ..$ rscript_startup : NULL [17:26:26.435] ..$ rscript_sh : chr "auto" [17:26:26.435] ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [17:26:26.435] ..$ methods : logi TRUE [17:26:26.435] ..$ socketOptions : chr "no-delay" [17:26:26.435] ..$ useXDR : logi FALSE [17:26:26.435] ..$ outfile : chr "/dev/null" [17:26:26.435] ..$ renice : int NA [17:26:26.435] ..$ rshcmd : NULL [17:26:26.435] ..$ user : NULL [17:26:26.435] ..$ revtunnel : logi NA [17:26:26.435] ..$ rshlogfile : NULL [17:26:26.435] ..$ rshopts : NULL [17:26:26.435] ..$ rank : int 1 [17:26:26.435] ..$ manual : logi FALSE [17:26:26.435] ..$ dryrun : logi FALSE [17:26:26.435] ..$ quiet : logi FALSE [17:26:26.435] ..$ setup_strategy : chr "parallel" [17:26:26.435] - attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [17:26:26.466] [local output] System call to launch all workers: [17:26:26.467] [local output] "D:/RCompile/recent/R/bin/x64/Rscript" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "#label=ClusterRegistry.R:153728:CRANWIN3:CRAN" -e "try(suppressWarnings(cat(Sys.getpid(),file=\"D:/temp/Rtmp2ZgXCX/worker.rank=1.parallelly.parent=153728.2588064c51952.pid\")), silent = TRUE)" -e "options(socketOptions = \"no-delay\")" -e "workRSOCK <- tryCatch(parallel:::.workRSOCK, error=function(e) parallel:::.slaveRSOCK); workRSOCK()" MASTER=localhost PORT=36389 OUT=/dev/null TIMEOUT=120 XDR=FALSE SETUPTIMEOUT=120 SETUPSTRATEGY=parallel [17:26:26.467] [local output] Starting PSOCK main server [17:26:26.473] [local output] Workers launched [17:26:26.474] [local output] Waiting for workers to connect back [17:26:26.474] - [local output] 0 workers out of 1 ready [17:26:26.757] - [local output] 0 workers out of 1 ready [17:26:26.758] - [local output] 1 workers out of 1 ready [17:26:26.758] [local output] Launching of 1 workers completed [17:26:26.758] [local output] Number of nodes in cluster: 1 [17:26:26.759] [local output] Collecting session information from 1 workers [17:26:26.760] [local output] - Worker #1 of 1 [17:26:26.760] [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 "5.0" .. .. ..$ year : chr "2024" .. .. ..$ month : chr "07" .. .. ..$ day : chr "28" .. .. ..$ svn rev : chr "86931" .. .. ..$ language : chr "R" .. .. ..$ version.string: chr "R Under development (unstable) (2024-07-28 r86931 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/RtmpsXpk4j/RLIBS_1097c668d2fda" "D:/RCompile/recent/R/library" .. ..$ pkgs : NULL .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" .. ..$ process:List of 1 .. .. ..$ pid: int 70268 ..- attr(*, "options")=List of 35 .. ..$ worker : chr "localhost" .. .. ..- attr(*, "localhost")= logi TRUE .. ..$ master : chr "localhost" .. ..$ port : int 36389 .. ..$ 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:153728:CRANWIN"| __truncated__ .. ..$ rscript_envs : NULL .. ..$ rscript_libs : NULL .. ..$ rscript_startup : NULL .. ..$ rscript_sh : chr [1:2] "cmd" "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", "none"), 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 36389 .. .. ..$ 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 "auto" .. .. ..$ 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-07-28 r86931 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-07-28 r86931 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:26:26.839] [local output] makeClusterPSOCK() ... [17:26:26.843] [local output] Workers: [n = 2] 'localhost', 'localhost' [17:26:26.847] [local output] Base port: 39915 [17:26:26.848] [local output] Getting setup options for 2 cluster nodes ... [17:26:26.848] [local output] - Node #1 of 2 ... [17:26:26.849] [local output] localMachine=TRUE => revtunnel=FALSE [17:26:26.852] [local output] Rscript port: 39915 [17:26:26.853] [local output] - Node #2 of 2 ... [17:26:26.853] [local output] localMachine=TRUE => revtunnel=FALSE [17:26:26.856] [local output] Rscript port: 39915 [17:26:26.856] [local output] Getting setup options for 2 cluster nodes ... done [17:26:26.857] [local output] - Parallel setup requested for some PSOCK nodes [17:26:26.857] [local output] Setting up PSOCK nodes in parallel [17:26:26.858] List of 36 [17:26:26.858] $ worker : chr "localhost" [17:26:26.858] ..- attr(*, "localhost")= logi TRUE [17:26:26.858] $ master : chr "localhost" [17:26:26.858] $ port : int 39915 [17:26:26.858] $ connectTimeout : num 120 [17:26:26.858] $ timeout : num 120 [17:26:26.858] $ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [17:26:26.858] $ homogeneous : logi TRUE [17:26:26.858] $ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=ClusterRegistry.R:153728:CRANWIN"| __truncated__ [17:26:26.858] $ rscript_envs : NULL [17:26:26.858] $ rscript_libs : NULL [17:26:26.858] $ rscript_startup : NULL [17:26:26.858] $ rscript_sh : chr [1:2] "cmd" "cmd" [17:26:26.858] $ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [17:26:26.858] $ methods : logi TRUE [17:26:26.858] $ socketOptions : chr "no-delay" [17:26:26.858] $ useXDR : logi FALSE [17:26:26.858] $ outfile : chr "/dev/null" [17:26:26.858] $ renice : int NA [17:26:26.858] $ rshcmd : NULL [17:26:26.858] $ user : chr(0) [17:26:26.858] $ revtunnel : logi FALSE [17:26:26.858] $ rshlogfile : NULL [17:26:26.858] $ rshopts : chr(0) [17:26:26.858] $ rank : int 1 [17:26:26.858] $ manual : logi FALSE [17:26:26.858] $ dryrun : logi FALSE [17:26:26.858] $ quiet : logi FALSE [17:26:26.858] $ setup_strategy : chr "parallel" [17:26:26.858] $ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [17:26:26.858] $ pidfile : chr "D:/temp/Rtmp2ZgXCX/worker.rank=1.parallelly.parent=153728.2588099534ca.pid" [17:26:26.858] $ rshcmd_label : NULL [17:26:26.858] $ rsh_call : NULL [17:26:26.858] $ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [17:26:26.858] $ localMachine : logi TRUE [17:26:26.858] $ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [17:26:26.858] master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [17:26:26.858] 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [17:26:26.858] 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [17:26:26.858] rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [17:26:26.858] "cmd", "sh", "none"), default_packages = c("datasets", "utils", [17:26:26.858] "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [17:26:26.858] socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [17:26:26.858] "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [17:26:26.858] FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [17:26:26.858] NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [17:26:26.858] NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [17:26:26.858] setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [17:26:26.858] "parallel"), action = c("launch", "options"), verbose = FALSE) [17:26:26.858] $ arguments :List of 28 [17:26:26.858] ..$ worker : chr "localhost" [17:26:26.858] ..$ master : NULL [17:26:26.858] ..$ port : int 39915 [17:26:26.858] ..$ connectTimeout : num 120 [17:26:26.858] ..$ timeout : num 120 [17:26:26.858] ..$ rscript : NULL [17:26:26.858] ..$ homogeneous : NULL [17:26:26.858] ..$ rscript_args : NULL [17:26:26.858] ..$ rscript_envs : NULL [17:26:26.858] ..$ rscript_libs : NULL [17:26:26.858] ..$ rscript_startup : NULL [17:26:26.858] ..$ rscript_sh : chr "auto" [17:26:26.858] ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [17:26:26.858] ..$ methods : logi TRUE [17:26:26.858] ..$ socketOptions : chr "no-delay" [17:26:26.858] ..$ useXDR : logi FALSE [17:26:26.858] ..$ outfile : chr "/dev/null" [17:26:26.858] ..$ renice : int NA [17:26:26.858] ..$ rshcmd : NULL [17:26:26.858] ..$ user : NULL [17:26:26.858] ..$ revtunnel : logi NA [17:26:26.858] ..$ rshlogfile : NULL [17:26:26.858] ..$ rshopts : NULL [17:26:26.858] ..$ rank : int 1 [17:26:26.858] ..$ manual : logi FALSE [17:26:26.858] ..$ dryrun : logi FALSE [17:26:26.858] ..$ quiet : logi FALSE [17:26:26.858] ..$ setup_strategy : chr "parallel" [17:26:26.858] - attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [17:26:26.893] [local output] System call to launch all workers: [17:26:26.893] [local output] "D:/RCompile/recent/R/bin/x64/Rscript" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "#label=ClusterRegistry.R:153728:CRANWIN3:CRAN" -e "try(suppressWarnings(cat(Sys.getpid(),file=\"D:/temp/Rtmp2ZgXCX/worker.rank=1.parallelly.parent=153728.2588099534ca.pid\")), silent = TRUE)" -e "options(socketOptions = \"no-delay\")" -e "workRSOCK <- tryCatch(parallel:::.workRSOCK, error=function(e) parallel:::.slaveRSOCK); workRSOCK()" MASTER=localhost PORT=39915 OUT=/dev/null TIMEOUT=120 XDR=FALSE SETUPTIMEOUT=120 SETUPSTRATEGY=parallel [17:26:26.893] [local output] Starting PSOCK main server [17:26:26.903] [local output] Workers launched [17:26:26.903] [local output] Waiting for workers to connect back [17:26:26.904] - [local output] 0 workers out of 2 ready [17:26:27.170] - [local output] 0 workers out of 2 ready [17:26:27.170] - [local output] 1 workers out of 2 ready [17:26:27.173] - [local output] 1 workers out of 2 ready [17:26:27.173] - [local output] 2 workers out of 2 ready [17:26:27.176] [local output] Launching of 2 workers completed [17:26:27.176] [local output] Number of nodes in cluster: 2 [17:26:27.177] [local output] Collecting session information from 2 workers [17:26:27.178] [local output] - Worker #1 of 2 [17:26:27.179] [local output] - Worker #2 of 2 [17:26:27.179] [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 "5.0" .. .. ..$ year : chr "2024" .. .. ..$ month : chr "07" .. .. ..$ day : chr "28" .. .. ..$ svn rev : chr "86931" .. .. ..$ language : chr "R" .. .. ..$ version.string: chr "R Under development (unstable) (2024-07-28 r86931 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/RtmpsXpk4j/RLIBS_1097c668d2fda" "D:/RCompile/recent/R/library" .. ..$ pkgs : NULL .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" .. ..$ process:List of 1 .. .. ..$ pid: int 53068 ..- attr(*, "options")=List of 35 .. ..$ worker : chr "localhost" .. .. ..- attr(*, "localhost")= logi TRUE .. ..$ master : chr "localhost" .. ..$ port : int 39915 .. ..$ 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:153728:CRANWIN"| __truncated__ .. ..$ rscript_envs : NULL .. ..$ rscript_libs : NULL .. ..$ rscript_startup : NULL .. ..$ rscript_sh : chr [1:2] "cmd" "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", "none"), 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 39915 .. .. ..$ 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 "auto" .. .. ..$ 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 "5.0" .. .. ..$ year : chr "2024" .. .. ..$ month : chr "07" .. .. ..$ day : chr "28" .. .. ..$ svn rev : chr "86931" .. .. ..$ language : chr "R" .. .. ..$ version.string: chr "R Under development (unstable) (2024-07-28 r86931 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/RtmpsXpk4j/RLIBS_1097c668d2fda" "D:/RCompile/recent/R/library" .. ..$ pkgs : NULL .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" .. ..$ process:List of 1 .. .. ..$ pid: int 146952 ..- attr(*, "options")=List of 35 .. ..$ worker : chr "localhost" .. .. ..- attr(*, "localhost")= logi TRUE .. ..$ master : chr "localhost" .. ..$ port : int 39915 .. ..$ 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:153728:CRANWIN"| __truncated__ .. ..$ rscript_envs : NULL .. ..$ rscript_libs : NULL .. ..$ rscript_startup : NULL .. ..$ rscript_sh : chr [1:2] "cmd" "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", "none"), 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 39915 .. .. ..$ 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 "auto" .. .. ..$ 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-07-28 r86931 ucrt), platform x86_64-w64-mingw32) Starting duel-worker cluster ... DONE Starting single-worker cluster ... [17:26:27.313] [local output] makeClusterPSOCK() ... [17:26:27.318] [local output] Workers: [n = 1] 'localhost' [17:26:27.321] [local output] Base port: 33548 [17:26:27.322] [local output] Getting setup options for 1 cluster nodes ... [17:26:27.322] [local output] - Node #1 of 1 ... [17:26:27.324] [local output] localMachine=TRUE => revtunnel=FALSE [17:26:27.326] [local output] Rscript port: 33548 [17:26:27.327] [local output] Getting setup options for 1 cluster nodes ... done [17:26:27.327] [local output] - Parallel setup requested for some PSOCK nodes [17:26:27.328] [local output] Setting up PSOCK nodes in parallel [17:26:27.329] List of 36 [17:26:27.329] $ worker : chr "localhost" [17:26:27.329] ..- attr(*, "localhost")= logi TRUE [17:26:27.329] $ master : chr "localhost" [17:26:27.329] $ port : int 33548 [17:26:27.329] $ connectTimeout : num 120 [17:26:27.329] $ timeout : num 120 [17:26:27.329] $ rscript : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\"" [17:26:27.329] $ homogeneous : logi TRUE [17:26:27.329] $ rscript_args : chr "--default-packages=datasets,utils,grDevices,graphics,stats,methods -e \"#label=ClusterRegistry.R:153728:CRANWIN"| __truncated__ [17:26:27.329] $ rscript_envs : NULL [17:26:27.329] $ rscript_libs : NULL [17:26:27.329] $ rscript_startup : NULL [17:26:27.329] $ rscript_sh : chr [1:2] "cmd" "cmd" [17:26:27.329] $ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [17:26:27.329] $ methods : logi TRUE [17:26:27.329] $ socketOptions : chr "no-delay" [17:26:27.329] $ useXDR : logi FALSE [17:26:27.329] $ outfile : chr "/dev/null" [17:26:27.329] $ renice : int NA [17:26:27.329] $ rshcmd : NULL [17:26:27.329] $ user : chr(0) [17:26:27.329] $ revtunnel : logi FALSE [17:26:27.329] $ rshlogfile : NULL [17:26:27.329] $ rshopts : chr(0) [17:26:27.329] $ rank : int 1 [17:26:27.329] $ manual : logi FALSE [17:26:27.329] $ dryrun : logi FALSE [17:26:27.329] $ quiet : logi FALSE [17:26:27.329] $ setup_strategy : chr "parallel" [17:26:27.329] $ local_cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [17:26:27.329] $ pidfile : chr "D:/temp/Rtmp2ZgXCX/worker.rank=1.parallelly.parent=153728.2588057dc5261.pid" [17:26:27.329] $ rshcmd_label : NULL [17:26:27.329] $ rsh_call : NULL [17:26:27.329] $ cmd : chr "\"D:/RCompile/recent/R/bin/x64/Rscript\" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "| __truncated__ [17:26:27.329] $ localMachine : logi TRUE [17:26:27.329] $ make_fcn :function (worker = getOption2("parallelly.localhost.hostname", "localhost"), [17:26:27.329] master = NULL, port, connectTimeout = getOption2("parallelly.makeNodePSOCK.connectTimeout", [17:26:27.329] 2 * 60), timeout = getOption2("parallelly.makeNodePSOCK.timeout", [17:26:27.329] 30 * 24 * 60 * 60), rscript = NULL, homogeneous = NULL, rscript_args = NULL, [17:26:27.329] rscript_envs = NULL, rscript_libs = NULL, rscript_startup = NULL, rscript_sh = c("auto", [17:26:27.329] "cmd", "sh", "none"), default_packages = c("datasets", "utils", [17:26:27.329] "grDevices", "graphics", "stats", if (methods) "methods"), methods = TRUE, [17:26:27.329] socketOptions = getOption2("parallelly.makeNodePSOCK.socketOptions", [17:26:27.329] "no-delay"), useXDR = getOption2("parallelly.makeNodePSOCK.useXDR", [17:26:27.329] FALSE), outfile = "/dev/null", renice = NA_integer_, rshcmd = getOption2("parallelly.makeNodePSOCK.rshcmd", [17:26:27.329] NULL), user = NULL, revtunnel = NA, rshlogfile = NULL, rshopts = getOption2("parallelly.makeNodePSOCK.rshopts", [17:26:27.329] NULL), rank = 1L, manual = FALSE, dryrun = FALSE, quiet = FALSE, [17:26:27.329] setup_strategy = getOption2("parallelly.makeNodePSOCK.setup_strategy", [17:26:27.329] "parallel"), action = c("launch", "options"), verbose = FALSE) [17:26:27.329] $ arguments :List of 28 [17:26:27.329] ..$ worker : chr "localhost" [17:26:27.329] ..$ master : NULL [17:26:27.329] ..$ port : int 33548 [17:26:27.329] ..$ connectTimeout : num 120 [17:26:27.329] ..$ timeout : num 120 [17:26:27.329] ..$ rscript : NULL [17:26:27.329] ..$ homogeneous : NULL [17:26:27.329] ..$ rscript_args : NULL [17:26:27.329] ..$ rscript_envs : NULL [17:26:27.329] ..$ rscript_libs : NULL [17:26:27.329] ..$ rscript_startup : NULL [17:26:27.329] ..$ rscript_sh : chr "auto" [17:26:27.329] ..$ default_packages: chr [1:6] "datasets" "utils" "grDevices" "graphics" ... [17:26:27.329] ..$ methods : logi TRUE [17:26:27.329] ..$ socketOptions : chr "no-delay" [17:26:27.329] ..$ useXDR : logi FALSE [17:26:27.329] ..$ outfile : chr "/dev/null" [17:26:27.329] ..$ renice : int NA [17:26:27.329] ..$ rshcmd : NULL [17:26:27.329] ..$ user : NULL [17:26:27.329] ..$ revtunnel : logi NA [17:26:27.329] ..$ rshlogfile : NULL [17:26:27.329] ..$ rshopts : NULL [17:26:27.329] ..$ rank : int 1 [17:26:27.329] ..$ manual : logi FALSE [17:26:27.329] ..$ dryrun : logi FALSE [17:26:27.329] ..$ quiet : logi FALSE [17:26:27.329] ..$ setup_strategy : chr "parallel" [17:26:27.329] - attr(*, "class")= chr [1:2] "makeNodePSOCKOptions" "makeNodeOptions" [17:26:27.369] [local output] System call to launch all workers: [17:26:27.369] [local output] "D:/RCompile/recent/R/bin/x64/Rscript" --default-packages=datasets,utils,grDevices,graphics,stats,methods -e "#label=ClusterRegistry.R:153728:CRANWIN3:CRAN" -e "try(suppressWarnings(cat(Sys.getpid(),file=\"D:/temp/Rtmp2ZgXCX/worker.rank=1.parallelly.parent=153728.2588057dc5261.pid\")), silent = TRUE)" -e "options(socketOptions = \"no-delay\")" -e "workRSOCK <- tryCatch(parallel:::.workRSOCK, error=function(e) parallel:::.slaveRSOCK); workRSOCK()" MASTER=localhost PORT=33548 OUT=/dev/null TIMEOUT=120 XDR=FALSE SETUPTIMEOUT=120 SETUPSTRATEGY=parallel [17:26:27.369] [local output] Starting PSOCK main server [17:26:27.376] [local output] Workers launched [17:26:27.376] [local output] Waiting for workers to connect back [17:26:27.377] - [local output] 0 workers out of 1 ready [17:26:27.608] - [local output] 0 workers out of 1 ready [17:26:27.609] - [local output] 1 workers out of 1 ready [17:26:27.609] [local output] Launching of 1 workers completed [17:26:27.610] [local output] Number of nodes in cluster: 1 [17:26:27.610] [local output] Collecting session information from 1 workers [17:26:27.611] [local output] - Worker #1 of 1 [17:26:27.612] [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 "5.0" .. .. ..$ year : chr "2024" .. .. ..$ month : chr "07" .. .. ..$ day : chr "28" .. .. ..$ svn rev : chr "86931" .. .. ..$ language : chr "R" .. .. ..$ version.string: chr "R Under development (unstable) (2024-07-28 r86931 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/RtmpsXpk4j/RLIBS_1097c668d2fda" "D:/RCompile/recent/R/library" .. ..$ pkgs : NULL .. ..$ pwd : chr "d:/RCompile/CRANincoming/R-devel/future.Rcheck/tests" .. ..$ process:List of 1 .. .. ..$ pid: int 38236 ..- attr(*, "options")=List of 35 .. ..$ worker : chr "localhost" .. .. ..- attr(*, "localhost")= logi TRUE .. ..$ master : chr "localhost" .. ..$ port : int 33548 .. ..$ 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:153728:CRANWIN"| __truncated__ .. ..$ rscript_envs : NULL .. ..$ rscript_libs : NULL .. ..$ rscript_startup : NULL .. ..$ rscript_sh : chr [1:2] "cmd" "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", "none"), 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 33548 .. .. ..$ 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 "auto" .. .. ..$ 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-07-28 r86931 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-07-28 r86931 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:26:27.684] plan(): Setting new future strategy stack: [17:26:27.685] List of future strategies: [17:26:27.685] 1. FutureStrategy: [17:26:27.685] - args: function (..., envir = parent.frame(), workers = "") [17:26:27.685] - tweaked: FALSE [17:26:27.685] - call: future::plan(oplan) [17:26:27.709] plan(): nbrOfWorkers() = 1 Failed to undo environment variables: - Expected environment variables: [n=205] '!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_NOTE_MISSING_PACKAGE_ANCHORS_', '_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 1.10 0.25 3.07