Is there an easy way to pass persistent data between flow runs?
n
nicholas
04/25/2020, 3:04 PM
Hi @Ziyao Wei, Prefect Core has hooks for storing and retrieving cached data on your own but doesn't persist data between runs because everything is stored in-memory. To pass persistent data, you'll need a persistence layer like Prefect Server / Cloud. For more information on caching, this page of the docs should have everything you need!
z
Ziyao Wei
04/25/2020, 3:11 PM
Cool, thanks! Before I digging into this, a quick question - we are using our own instance and not Prefect Cloud, does that change things?