Files
deb-python-taskflow/doc/source/conductors.rst
Joshua Harlow 2d2b1f8e55 Add docs related to the new conductor feature
Change-Id: I68722a5b6bea0e404427ec7b121e7c6f90e42145
2014-07-28 23:11:21 +08:00

2.3 KiB

Conductors

Overview

Conductors in TaskFlow provide a mechanism that unifies the various TaskFlow concepts under a single easy to use (as plug-and-play as we can make it) construct.

They are responsible for the following:

  • Interacting with jobboards <jobs> (examining and claiming jobs <jobs>).
  • Creating engines <engines> from the claimed jobs (using factories <resumption factories> to reconstruct the contained tasks and flows to be executed).
  • Dispatching the engine using the provided persistence <persistence> layer and engine configuration.
  • Completing or abandoning the claimed job (depending on dispatching and execution outcome).
  • Rinse and repeat.

Note

They are inspired by and have similar responsibilities as railroad conductors.

Considerations

Some usage considerations should be used when using a conductor to make sure it's used in a safe and reliable manner. Eventually we hope to make these non-issues but for now they are worth mentioning.

Endless cycling

What: Jobs that fail (due to some type of internal error) on one conductor will be abandoned by that conductor and then another conductor may experience those same errors and abandon it (and repeat). This will create a job abandonment cycle that will continue for as long as the job exists in an claimable state.

Example:

Conductor cycling

Alleviate by:

  1. Forcefully delete jobs that have been failing continuously after a given number of conductor attempts. This can be either done manually or automatically via scripts (or other associated monitoring).
  2. Resolve the internal error's cause (storage backend failure, other...).
  3. Help implement jobboard garbage binning.

Interfaces

taskflow.conductors.base

taskflow.conductors.single_threaded

Hierarchy

taskflow.conductors.base taskflow.conductors.single_threaded