Hi Matt,
You can do:
CreateJob to generate a configuring job, then use below API to delete the job:
public
interface
ISchedulerStore :
IDisposable
{
int DeleteJob(int
jobId);
which is in Microsoft.Hpc.Scheduler.Store.dll
You can use below for store connect
public static
Microsoft.Hpc.Scheduler.Store.ISchedulerStore
Connect(string
server)
Member of
Microsoft.Hpc.Scheduler.Store.SchedulerStore
This should be very fast.
Qiufang Shi