getJobInfo {BatchJobs} | R Documentation |
Get computational information of jobs.
Description
Returns time stamps (submitted, started, done, error),
time running, approximate memory usage (in Mb),
error messages (shortened, see showLog
for detailed error messages),
time in queue, hostname of the host the job was executed,
assigned batch ID, the R PID and the seed of the job.
To estimate memory usage the sum of the last column of gc
is used.
Column “time.running” displays the time until either the job was done, or an error occured;
it will by NA
in case of time outs or hard R crashes.
Usage
getJobInfo(
reg,
ids,
pars = FALSE,
prefix.pars = FALSE,
select,
unit = "seconds"
)
Arguments
reg |
[ |
ids |
[ |
pars |
[ |
prefix.pars |
[ |
select |
[ |
unit |
[ |
Value
[data.frame
].
See Also
Other debug:
debugMulticore()
,
debugSSH()
,
getErrorMessages()
,
getLogFiles()
,
grepLogs()
,
killJobs()
,
resetJobs()
,
setJobFunction()
,
showLog()
,
testJob()