| showStatus {BatchJobs} | R Documentation |
E.g.: How many there are, how many are done, any errors, etc.
showStatus(reg, ids, run.and.exp = TRUE, errors = 10L)
reg |
[ |
ids |
[ |
errors |
[ |
run.and.exp |
[ |
[list] List of absolute job numbers as printed by showStatus.
Returned invisibly.
reg = makeRegistry(id = "BatchJobsExample", file.dir = tempfile(), seed = 123) f = function(x) x^2 batchMap(reg, f, 1:10) submitJobs(reg) # should show 10 submitted jobs, which are all done. showStatus(reg)