I have the output from sacct --format="jobID,CPUTime,MaxRSS" -j 66930332_195. I know maxRSS reports a value roughly equivalent to max memory usage. However, what do the two different rows in maxRSS refer to?
JobID CPUTime MaxRSS
------------ ---------- ----------
66930332_195 00:05:15
66930332_19+ 00:05:15 4688356K
66930332_19+ 00:05:15 2376K
Thanks in advance! I haven't been able to find this documented anywhere
If you use
%20like this to show the JobID in its entirety,you would probably see something like this:
The first row corresponds to the job itself and the other ones correspond to the jobs steps. That should correspond to the number of
sruncalls you do in your submission script.