Search
Page 3 of 7. Showing 70 results (0.017 seconds)
How to submit a job to only empty workers, regardless of slot count
example: job = { 'prototype': 'cmdline', 'name': 'testing the job kind', 'package': {'cmdline': 'sleep 30'}, 'reservations': 'host.processors=1+', 'requirements…Basic_SimpleCMD.py
['prototype'] = 'cmdrange' package = {} job['package'] = package job['package']['simpleCmdType'] = 'Maya BatchRender (rib)' listOfJobsToSubmit…framesubmit.py
is a simple Python dictionary reference # # job = { # 'name' : 'job name', # 'priority' : , # 'branch' : '', # 'prototype…qbresume
Resume suspended jobs --user string Resume jobs for user string --type string --prototype string Resume jobs with string type --status string Resume jobs…jobSubmit_emailCallback.py
(): # Set basic job properties job = {} job['name'] = 'cmdline with email callback' job['prototype'] = 'cmdline' # Set the package properties job…jobSubmit_cmdrangeOutputPaths.py
(): # Set basic job properties job = {} job['name'] = 'cmdrange with outputPaths job' job['cpus'] = 1 job['prototype'] = 'cmdrange' job…deletionCascade.py
#!/usr/bin/env python import qb task = [] def newJob(name, status='blocked'): job = { 'prototype': 'cmdline', 'name': 'job %s' % name, 'label': 'job…How to restrict a host to only one instance of a given kind of job, but still allow other jobs
myCustomJobType job on a worker at once) qbsub --type myCustomJobType --requirements "not(host.duty.type has myCustomJobType)" ... API example: job = { 'prototype': 'cmdline…qb_preemptcmp($runningjob, $candidatejob, $host)
” => “username”, “status” => “pending”, “name” => “my job’s name”, “label” => “qube1”, “cluster” => “/my/cluster/”, “cpus” => 2, “prototype” => “cmdline”, “requirements” => “”, “reservations…Practical example Renderman job
defines the internal Qube! jobtype to be used to execute the job job['prototype'] = 'cmdrange' # The below parameters are explained further in the "Job submission with job…