Search
Page 76 of 111. Showing 1,104 results (0.011 seconds)
Temporarily take hosts out of the farm.
See Worker removal.…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…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
in the local machine's qb.conf. Be sure qb_domain is consistent across your facility. The default and recommended value is "qube" (note: This is the qube domain. It not related…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…How do I run the Supervisor service as some other user on Windows?
In the Services Control Panel, right-click the qubesupervisor service and select Properties from the menu. Click the LogOn tab and then click the radio button to set "This Account" with the proper login and password. Remember, the supervisor will read fro…How do I restart the Worker remotely? (Windows)
Submit a remote job: qbsub --host hostname "net stop qubeworker && net start qubeworker" (Alternate) Install sshd from Cygwin ssh hostname "net stop qubeworker && net start qubeworker"…