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
The mix event_store.migrate task used to migrate an EventStore database is idempotent but does not support being run concurrently.
A database lock could be used to ensure only one migration can run at a time, preventing issues with multi-node deployments where the migration is automatically run on startup as two or more nodes starting at the same time may attempt to migrate simultaneously.
The text was updated successfully, but these errors were encountered:
Use Postgres advisory lock when migrating an event store database to ensure only a single migration can run at a time. This protects against running migrations concurrently by mistake.
Fixes#192.
Use Postgres advisory lock when migrating an event store database to ensure only a single migration can run at a time. This protects against running migrations concurrently by mistake.
Fixes#192.
The
mix event_store.migrate
task used to migrate an EventStore database is idempotent but does not support being run concurrently.A database lock could be used to ensure only one migration can run at a time, preventing issues with multi-node deployments where the migration is automatically run on startup as two or more nodes starting at the same time may attempt to migrate simultaneously.
The text was updated successfully, but these errors were encountered: