Hello,
I want to create a HPC job that blocks certain nodes. This should prevent other jobs from starting on these nodes in a given time. During this time these nodes are used for other tasks (without the Job Scheduler).
An example is:
New-HpcJob -Name "test" -NumNodes 2 -RequestedNodes "Node1,Node2" -RunTime 30 -NotifyOnStart $True -EmailAddress "mail@server.com" | Add-HpcTask -Name "Sweep Task" -Parametric -Command "oneMinute.bat" -End
30
This should start a dummy task "oneMinute" and repeat it 30 times. The .bat file contains "timeout /t 60" to pause for 60 seconds. But the command hase no effect.
Is there a other option to create a dumy-block-job?
Thanks