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
When we deploy a new version, Kubernetes will usually do a rolling update where it first starts the new backend and then shuts down the old one, right? If yes, this means that if we do a database migration, the old backend could write values into the database that are inconsistent with the new database version and thereby put the database into an invalid state. Can we somehow avoid having two parallel running backends (at least) if there is a database migration?
The text was updated successfully, but these errors were encountered:
Originally brought up in #3125:
When we deploy a new version, Kubernetes will usually do a rolling update where it first starts the new backend and then shuts down the old one, right? If yes, this means that if we do a database migration, the old backend could write values into the database that are inconsistent with the new database version and thereby put the database into an invalid state. Can we somehow avoid having two parallel running backends (at least) if there is a database migration?
The text was updated successfully, but these errors were encountered: