Versions Compared

    Key

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

    ...

    Some of the most common render wrangling tasks can now be handled automatically by the Supervisor through a set of global parameters. Qube! has added built-in logic that detects faulty jobs and workers. These parameters can be configured by modifying the Supervisor qb.conf directly or through the WranglerView "QubeGUIAdministration->Administration->Config (local)" dialog.

    Automated Actions

    ...



    To enable:

    • Make sure that the supervisor_language_flags  includes "auto_wrangling" (it's ON by default, if "supervisor_language_flags" isn't found in qb.conf).
    • supervisor_language_flags, which lists the enabled callback "languages", must include "auto_wrangling" to enable auto-wrangling.
    • To globally turn on auto-wrangling for all submitted jobs (recommended), include "auto_wrangling" in the supervisor_job_flag" configuration parameter in the supervisor's qb.conf. Restart the supervisor if qb.conf settings were changed.
    • Auto-wrangling also may be enabled on a job-by-job basis, by NOT including "auto_wrangling" in "supervisor_job_flags", and explicitly setting the "auto_wrangling" flag for jobs.
    • Auto-wrangling also may be enabled on a client-to-client basis, by NOT including "auto_wrangling" in "supervisor_job_flags", but including it in the "client_job_flags" on desired submission machines. This will enable auto-wrangling on all jobs submitted from those machines.

    To disable:

    ...

    • aw_activation_work_count : This positive integer specifies the number of agenda-items that should fail on a given worker before the auto-wrangling logic is activated. (default: 5)
    • aw_job_migrate_max : This positive integer specifies the maximum number of automatic migration the auto-wrangling subsystem will perform on a job, before it decides that the job is faulty and blocks it, and notifies the submitting user. In other words, this effectively determines the number of workers on which a job will be tried, before the system "gives up". (default: 3)

    Other related qb.conf parameters:

    • supervisor_job_flags may include "auto_wrangling" which will globally turn on auto_wrangling for all submitted jobs (i.e., by automatically turning on the "auto_wrangling" flag for every job when submitted).
    • The email address specified in the mail_administrator parameter will receive email messages when auto-wrangling determines that a worker is faulty and locks it.

    Job parameters:

    • A job's "email address" field, if set, is used as the recepient address of email notifications sent out by the auto-wrangling subsystem.

    ...

    Code Block
    if (a worker has failed more than aw_activation_work_count agenda-items) {
        
    	if (the worker hasn't completed any frame it has been assigned so far) {
        
    	    if (other workers are completing frames from this job) {
        
    	        Worker is faulty, so lock it.
                Change the status of failed frames back to "pending" so
                other workers may retry them.
                Notify admin that the worker is faulty and has been locked
            
            } else { // no other worker is completing frames.
            
                if (there is at least another worker running this job) {
                    
                    if (all the other workers are also failing frames) {
        
    	                Job is faulty, so block it.
                        Notify submitter.
        
    	            } else {
        
    	                // There are other workers running this job, but there
                        // are no complete frames. All the failed frames were
                        // processed by this worker.
                        NoWorker conclusionis canvery belikely drawnfaulty, atso thislock timeit.
    Do nothing    		        Change the status of failed frames back to "pending" so
    	   		    	    other workers may retry them.
               			Notify admin that the worker is faulty and has been locked
                    }
                } else {
                    
                    // this is the only worker that has run this job.
                    // no frames are completing
                    
                    if (job has not been migrated to aw_job_migrate_max workers) {
        
    	                Migrate the job to another worker
        
    	            } else {
        
    	                // job has been migrated aw_job_migrate_max times
                        Job is faulty, so block it.
                        Notify user.
                    }
                }
            }
        }
    }