Synopsis
worker_flags =
mask
Mask sets some global Worker configuration parameters. Add up the settings to determine a composite value enabling each setting or list them in text form delimited by commas.
Values
Name | Value (dec / bin) | Description |
---|---|---|
dedicated | 1 / 00001 | Denotes if the host is a dedicated Qube Worker. (This flag is obsolete and no longer carries any meaning) |
dynamic | 2 / 00010 | Notify the Supervisor that it should identify the Worker by its hostname rather than its ip address. This allows the Supervisor to migrate host information rather than create a new host with the same name. |
auto_mount | 4 / 00100 | Enables the Windows Auto-Mounting system. The Worker will automatically mount drives which were detected in the user's environment any time the auto_mount job flag is set. (Windows only) |
remove_logs | 8 / 01000 | The Worker will automatically remove any logs which it used as temporary storage while running a job. Should only be disabled for debugging purposes. |
load_profile | 16 / 10000 | The Worker will use the Windows profile when running the job. (Windows only) |
Example
worker_flags = "auto_mount,load_profile"
Defaults
- Linux & OS X: "remove_logs"
- Windows: "remove_logs,load_profile,auto_mount"
...