Search
Page 75 of 1,195. Showing 11,950 results (0.015 seconds)
Temporarily take hosts out of the farm.
See Worker removal.…KB Job Submission
How do you remove a duplicate "down" host?
See Worker removal…How do I submit a frame render using qbsub?
Bear in mind that when you submit a command via qbsub, the Supervisor dispatches as many "subjobs" as you ask for with the "--cpus" option. Each subjob will execute the command. That means, if the command is set up to render a range of frames, each subjob…KB Supervisor
My job is finished but I seem to have pending subjobs
Check to see if you have host_list set as a job flag…I can't seem to qbping the Supervisor, even though I know it is up
Be sure you can ping the supervisor, using the OS "ping" utility. If you cannot, there is a networking issue outside of Qube. Check firewall settings. We prefer that machine-level firewalls are disabled. If you cannot turn off the firewall, open ports 5…Add a lag between worker job launches
The qb.conf setting you need to use is: worker_job_start_delay The field is in seconds. worker_job_start_delay = 10…How to restrict a host to only one instance of a given kind of job, but still allow other jobs
A Qube job has a "kind" parameter; this is a string which can be set to any value the user desires. It's mostly used to say "Only run one of this kind of a job on a worker at once". This tells the queuing system to filter out all hosts which have this…Using the --type and --data with qbsub to submit a job
Here's a normal command line sleep 1000 qbsub: qbsub sleep 1000 This is how you'd do it with the --data and --type: qbsub --type cmdline --data '(=(cmdline=sleep "1000"))' I found the data string by running qbsub --xml --export job.xja sleep 1000 Examinin…