I'm having some trouble with a specific node. Until I resolve it, I don't want any jobs to run on ii. How can I temporarily take this node out of the nodes "pool"?
|
feedback
|
|
Without knowing your SGE version I cannot say for certain that this will achieve the desired outcome, however, | |||||
feedback
|
|
If you're running 6.1 or better, here's the best way. Create a new hostgroup called @disabled (qconf -ahgrp @disabled). Create a new resource quota set with "limit hosts @disabled to slots=0" (qconf -arqs). Now, to disable a host, just add it to the host group (qconf -aattr hostgroup hostlist MYHOST @disabled). To reenable the host, remove it from the host group (qconf -dattr hostgroup hostlist MYHOST @disabled). This process will stop new jobs from being scheduled to the machine and allow the currently running jobs to complete. Daniel | |||||||
feedback
|