How to set an execution queue which cannot run any job?

I wanna create an execution queue which cannot run any job, all jobs submit or move to this queue will queued forever.
How to make it possible???

Please create a queue like this:

qmgr -c "create queue bufferq queue_type=e , enabled=true, started=false"

#This queue called bufferq will accept jobs but not run them, as started is set to false
#If you want this queue not to accept any jobs then set enabled to False

It works, thx!

A few minutes ago, I also found another way.
“Qmgr: set queue my_queue max_run = [o:PBS_ALL=0]”

1 Like