This is probably a result of being unfamiliar with...
# ask-community
m
This is probably a result of being unfamiliar with Prefect's verbology... but I'm having a hard time figuring out how to share state between flow runs. I am building a flow that will need store a "cursor"-like value between runs
r
You could use a json block to store a 'checkpoint' that you read in on the next run, or persist it to a db
m
ok I think I got the hang of it, I had to create the json block in the UI before running the job, and then to update the state I add ovewrite=True now just trying to dig through the sqlite prefect.db file, but I can't seem to find where the value is stored, have done select * on most tables