Hello. I’m trying to figure out why my configured ...
# prefect-community
j
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
Caching is different from checkpointing with Results. Checkpointing is for flow restarts, while caching is across flow runs (but both use results)
j
I see. Thanks!