Available plugins

cache_disk

Provides a cache through disk.

Warning

This is not safe from attacks. As it uses the pickle module, it could be led to unpickle unsafe data, if an attacker got an access to the filesystem. Use at your own risk.

Note

This cache is functional, but will prevent blocks with side-effects to compute. Keep that in mind.

debug

The debug plugin prints an excerpt of each block’s result after its execution, it is useful to visualize the evolution of data transformations through the graph, and spot where something goes wrong.

instrumentation

The instrumentation plugin measures the time taken by blocks to execute, and reports them at the end. This is useful to spot bottlenecks, in order to optimize slow blocks.