Cache previous executions
Iterating quickly with ZenML through caching.
Last updated
Iterating quickly with ZenML through caching.
Last updated
Developing machine learning pipelines is iterative in nature. ZenML speeds up development in this work with step caching.
In the logs of your previous runs, you might have noticed at this point that rerunning the pipeline a second time will use caching on the first step:
ZenML understands that nothing has changed between subsequent runs, so it re-uses the output of the previous run (the outputs are persisted in the artifact store). This behavior is known as caching.
In ZenML, caching is enabled by default. Since ZenML automatically tracks and versions all inputs, outputs, and parameters of steps and pipelines, steps will not be re-executed within the same pipeline on subsequent pipeline runs as long as there is no change in the inputs, parameters, or code of a step.
If you run a pipeline without a schedule, ZenML will be able to compute the cached steps on your client machine. This means that these steps don't have to be executed by your orchestrator, which can save time and money when you're executing your pipelines remotely. If you always want your orchestrator to compute cached steps dynamically, you can set the ZENML_PREVENT_CLIENT_SIDE_CACHING
environment variable to True
.
The caching does not automatically detect changes within the file system or on external APIs. Make sure to manually set caching to False
on steps that depend on external inputs, file-system changes, or if the step should run regardless of caching.
With caching as the default behavior, there will be times when you need to disable it.
There are levels at which you can take control of when and where caching is used.
On a pipeline level, the caching policy can be set as a parameter within the @pipeline
decorator as shown below:
The setting above will disable caching for all steps in the pipeline unless a step explicitly sets enable_cache=True
( see below).
When writing your pipelines, be explicit. This makes it clear when looking at the code if caching is enabled or disabled for any given pipeline.
Sometimes you want to have control over caching at runtime instead of defaulting to the hard-coded pipeline and step decorator settings. ZenML offers a way to override all caching settings at runtime:
The code above disables caching for all steps of your pipeline, no matter what you have configured in the @step
or @pipeline
decorators.
The with_options
function allows you to configure all sorts of things this way. We will learn more about it in the coming chapters!
Caching can also be explicitly configured at a step level via a parameter of the @step
decorator:
The code above turns caching off for this step only.
You can also use with_options
with the step, just as in the pipeline:
This section combines all the code from this section into one simple script that you can use to see caching easily: