I have the following question.
Why when submit the job on the standard node (maximum cores 56) everything runs fine, however when I submit the same job/code to the large_memory node (maximum cores 128), I get an error?
Parallelization code in R:
> no_cores <- detectCores() - 1
> cl <- makeCluster(no_cores, outfile=paste0('./info_parallel.log'))
Error
Error in socketConnection(master, port = port, blocking = TRUE, open = "a+b", : cannot open the connection Calls: <Anonymous> ... doTryCatch -> recvData -> makeSOCKmaster -> socketConnection In addition: Warning message: In socketConnection(master, port = port, blocking = TRUE, open = "a+b", : localhost:11232 cannot be opened Execution halted Error in unserialize(node$con) : error reading from connection Calls: <Anonymous> ... doTryCatch -> recvData -> recvData.SOCKnode -> unserialize Execution halted Error in unserialize(node$con) : error reading from connection Calls: <Anonymous> ... doTryCatch -> recvData -> recvData.SOCKnode -> unserialize Execution halted
As I said, the R code runs fine on the standard nodes, so I assume it is a problem with the large_memory node. What can that be?