FlamencoDispatcher
Dispatches tasks to be run by the Flamenco render farm manager.
user
Container for user-defined plugs. Nodes should never make their own plugs here, so users are free to do as they wish.
preTasks
Input connections to upstream nodes which must be executed before this node.
postTasks
Input connections to nodes which must be executed after this node, but which don’t need to be executed before downstream nodes.
task
Output connections to downstream nodes which must not be executed until after this node.
dispatcher
Container for custom plugs which dispatchers use to control their behaviour.
dispatcher.batchSize
Maximum number of frames to batch together when dispatching tasks.
If the node requires sequence execution batchSize will be ignored.
dispatcher.immediate
Causes this node to be executed immediately upon dispatch, rather than have its execution be scheduled normally by the dispatcher. For instance, when using the LocalDispatcher, the node will be executed immediately in the dispatching process and not in a background process as usual.
When a node is made immediate, all upstream nodes are automatically considered to be immediate too, regardless of their settings.
dispatcher.tractor
Settings that control how tasks are dispatched to Tractor.
dispatcher.tractor.service
A Tractor “service key expression” used to select blades on which tasks will be executed.
tasks
The tasks to be executed by this dispatcher.
framesMode
Determines the active frame range to be dispatched as follows :
CurrentFrame dispatches the current frame only, as specified by the
${frame}context variable.FullRange uses the full frame range as specified by the
${frameRange:start}and${frameRange:end}context variables.CustomRange uses a user defined range, as specified by the
frameRangeplug.
frameRange
The frame range to be used when framesMode is “CustomRange”.
jobName
A descriptive name for the job.
jobsDirectory
A directory to store temporary files used by the dispatcher.
managerURL
The URL used to connect to the Flamenco manager. If not specified, the manager will be discovered automatically.
Tip
The Flamenco manager displays its own URL when it is first started.
priority
The priority of the job relative to other jobs.
workerTag
Limits the job to workers with a matching tag. This allows jobs to be directed to subsets of the render farm.
startPaused
Submits the job in a paused state, so that it doesn’t pick up workers until it is unpaused via the Flamenco dashboard.