https://prefect.io logo
Title
j

Josh Paulin

07/06/2022, 6:50 PM
Hello. I’m trying to figure out why my configured results don’t seem to be respected/used for caching between flow runs. I have a task decorated to use checkpointing. On each run of the flow, I see the task complete with a
Success
state, and the results file has been overwritten. If I’m understanding correctly this should be completing with
Cached
. Any suggestions?
k

Kevin Kho

07/06/2022, 7:20 PM
Caching is different from checkpointing with Results. Checkpointing is for flow restarts, while caching is across flow runs (but both use results)
j

Josh Paulin

07/06/2022, 7:36 PM
I see. Thanks!