Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PBS/Torque - Couldn't delete completed job status information

Tags:

pbs

The command 'qstat -a' outputs lots of lines of information for completed jobs all with status 'C'. It seems that they will stay forever. How to cleanup these unneeded job information since those jobs are already 'completed'? Thanks!

like image 459
user2884311 Avatar asked Oct 02 '22 17:10

user2884311


2 Answers

This is controlled by the qmgr parameter keep_completed. keep_completed specifies a number of seconds after completion a job should continue to be visible. If you would like to immediately delete a job without waiting this amount of time, you can execute

qdel -p <jobid>
like image 66
dbeer Avatar answered Oct 10 '22 15:10

dbeer


Type qstat -r to get only the running jobs

like image 38
Claude COULOMBE Avatar answered Oct 10 '22 14:10

Claude COULOMBE