- Simple tutorial overview
- pipeline functions in detail
It is all very well being able to trace the data flow through the pipeline. Sometimes, however, we need a bit of eye-candy.
![]()
- We can see this flowchart of our fledgling pipeline by executing:
pipeline_printout_graph ( 'flowchart.svg', 'svg', [second_task], no_key_legend = False)Flowcharts can be printed in a large number of formats including jpg, svg, png and pdf provided that the dot programme from Graphviz is installed.
For this simple case, we have ommitted the legend key which distinguishes between the different states of the various tasks. (See below for the legend key.)
Flowcharts are especially useful if you have really complicated pipelines, such as
![]()
Especially, if the pipeline is not set up properly, and vicious circular dependencies are present:
![]()