Versions Compared

    Key

    • This line was added.
    • This line was removed.
    • Formatting was changed.
    Comment: Published by Scroll Versions from this space and version 7.0-0

    Synopsis

    worker_flags = maskMask sets some flag[,flag...]

    Set 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.flags. 

    Values

    NameValue (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)
    auto_removeAutomatically remove the worker from the supervisor's list of hosts when the worker service is stopped.


    Example

    worker_flags = "auto_mount,load_profile,auto_remove"

    Defaults

    • Linux & OS X:  "remove_logs"
    • Windows:         "remove_logs,load_profile,auto_mount"

    ...