You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2.**State** inside the circuit across all the workers.
I was wondering if there are classes of pipeline applicaitons where State inside the circuit across all the workers. is cheaper to reproduce from the Output produced by the circuit in a previous step but not yet acknowledged by its destination. instead of storing it as persistent state. (e.g., what i have in mind is something like group-by aggregates for dashboards etc.) and if that's something to consider (maybe/probably not).
The text was updated successfully, but these errors were encountered:
Oh, that's interesting because it's going the wrong direction. Instead of input->state->output, you're talking about output->state. It is obviously not possible in general, since of course information is usually lost when producing output. I don't know whether there is an interesting class of applications where the state can be derived from the output.
Another possibility that has occurred to me is that there are applications where the output only depends on fairly recent input, so that it could be cheaper to reproduce the state, by replaying starting some fixed amount of time back in the input, than to save the state. This risks incorrect output, though, if we are wrong about the output only depending on recent input. (Replaying recent input seems like a disaster-recovery response to me, if the state database is lost.)
dist-design/README.md
Line 109 in 8529146
I was wondering if there are classes of pipeline applicaitons where
State inside the circuit across all the workers.
is cheaper to reproduce from theOutput produced by the circuit in a previous step but not yet acknowledged by its destination.
instead of storing it as persistent state. (e.g., what i have in mind is something like group-by aggregates for dashboards etc.) and if that's something to consider (maybe/probably not).The text was updated successfully, but these errors were encountered: