Closed danielhorn closed 9 years ago
Good catch, I see this and possibly another error.
PS: Is it really necessary to trash the mem so much (1e8) in this test...... I needed to kill my local R because of this.
I need to fix someting in batchjobs to make this really work well.
You fixed this with your last commits? I think so ...
oh, sry ... i confused this with the working directory issue, this error is still existend
This was fixed a longer time ago
It seems like the src-directory (e.g. parallelMap_BatchJobs_srcs_1226f6e0cd0) is created in the working directory, not in the storagedir. See this code and watch your directories:
library(parallelMap) f = function() runif(8e8) parallelStart(mode = "BatchJobs", storagedir = "tst") parallelExport("f") z = parallelMap(function(i) {f(); 1}, i = 1:2, impute.error = NA) parallelStop()