Jeremy Knickerbocker
09/24/2020, 7:07 PMChris White
checkpoint=False
on all of your tasks, they will stop being checkpointed
- you could open a feature request issue for making checkpointing toggleable when run against a backend, and we can look into it!Jeremy Knickerbocker
09/24/2020, 7:22 PMChris White
dir
kwarg. For example:
result = LocalResult(dir="~/my-own/dir")
with Flow("my-flow", result=result)...
Note that individual task results will always override the flow result configuration.
If you really don’t want anything stored, you could also use the base Result
class as your Flow’s result and I actually think that would do the trick for you!Jeremy Knickerbocker
09/24/2020, 7:27 PMChris White
Marvin
09/24/2020, 7:28 PM