Worklows state management with Firestore
In Workflows, sometimes, you need to store some state, a key/value pair, in a step in one execution and later read that state in another step in another execution. There’s no intrinsic key/value store in Workflows. However, you can use Firestore as a key/value store and that’s what I want to show you here.
If you want to skip to see some samples, check out workflow.yaml.
If you want to learn more about it, keep reading.
Read More →