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
{{ message }}
This repository was archived by the owner on May 12, 2021. It is now read-only.
In general, virtcontainers is very stateful and that's an issue by itself. We're storing and fetching all sort of states without even trying to gather them from running entities for example.
A stateless virtcontainers is certainly unrealistic but should be an asymptotic goal.
Getting close to that goal means we need a better and more organized way to load and store states, and to validate state transitions. In other words, we need a package handling state management for all virtcontainers components.
Description of problem
In general,
virtcontainersis very stateful and that's an issue by itself. We're storing and fetching all sort of states without even trying to gather them from running entities for example.A stateless virtcontainers is certainly unrealistic but should be an asymptotic goal.
Getting close to that goal means we need a better and more organized way to load and store states, and to validate state transitions. In other words, we need a package handling state management for all virtcontainers components.