Synopsis
supervisor_job_flags = flagslist
Sets various job flags, which will be applied to all jobs run on the farm. These cannot be overridden, so use these sparingly.
Values
Flag | Decimal Value | Hex Value | Description |
---|---|---|---|
auto_mount | 8 | 0x8 | Require automatic drive mounts on worker. |
auto_wrangling | 16384 | 0x4000 | Enable auto-wrangling for this job. |
convert_path | 131072 | 0x20000 | Automatically convert paths on worker at runtime. New in 6.4-2 |
disable_auto_complete | 8192 | 0x2000 | Normally subjobs are automatically completed by the system when a job runs out of available agenda items. Setting this flag disables that. |
disable_cpu_limit | 4096 | 0x1000 | Normally, if a job is submitted with the number of subjobs greater than there are agenda items, Qube automatically shrinks the number of subjobs to be equal to the number of agenda items. Setting this flag disables that. |
disable_windows_job_object | 2048 | 0x800 | Disable Windows' process management mechanism called the "Job Object" that Qube normally uses to manage job processes-- some applications already use it internally, and job objects don't nest within another well, causing jobs to crash unexpectedly. |
elite | 512 | 0x200 | Submit job as an elite job, which will be started immediately regardless of how busy the farm is. Elite jobs are also protected from preemption. Must be admin. |
export_environment | 16 | 0x10 | Use environment variables set in the submission environment, when running the job on the workers. |
expand | 32 | -x20 | Automatically expand job to use as many subjobs as there are agenda items (limited by the total job slots in the farm). |
grid | 4 | 0x4 | Make all subjobs start at once (useful for implementation of parallel jobs, such as satellite renders). |
host_list | 256 | 0x100 | Run job on all candidate hosts, as filtered by other options (such as "hosts" or "groups"). |
1024 | 0x400 | Send e-mail when job is done. | |
migrate_on_frame_retry | 65536 | 0x10000 | When an agenda item (frame) fails but is retried automatically because the retrywork option is set, setting this flag causes the subjob to be migrated to another worker host, preventing the frame from running on the same host. |
p_agenda | 32768 | 0x8000 | Enable p-agenda for this job, so that some frames are processed at a higher priority. |
uninterruptible | 1 | 0x1 | Prevent job from being preempted. |
Example
supervisor_job_flags = "auto_mount"client_job_flags = "auto_mount,grid"
Defaults
"auto_mount"