-
Notifications
You must be signed in to change notification settings - Fork 243
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement database locking in the migration engine #1118
Labels
domain/schema
tech/engines/migration engine
Issue in the Migration Engine
tech/engines
Issue for tech Engines.
Milestone
Comments
tomhoule
added
process/candidate
tech/engines/migration engine
Issue in the Migration Engine
tech/engines
Issue for tech Engines.
labels
Sep 11, 2020
This was referenced Nov 4, 2020
tomhoule
added a commit
that referenced
this issue
Dec 21, 2020
tomhoule
added a commit
that referenced
this issue
Dec 23, 2020
tomhoule
added a commit
that referenced
this issue
Jan 4, 2021
tomhoule
added a commit
that referenced
this issue
Jan 4, 2021
tomhoule
added a commit
that referenced
this issue
Jan 11, 2021
tomhoule
added a commit
that referenced
this issue
Jan 20, 2021
tomhoule
added a commit
that referenced
this issue
Feb 5, 2021
tomhoule
added a commit
that referenced
this issue
Feb 8, 2021
This prevents multiple migration engines to concurrently update a database, like other migration tools do. closes #1118
tomhoule
added a commit
that referenced
this issue
Feb 8, 2021
This prevents multiple migration engines to concurrently update a database, like other migration tools do. closes #1118
tomhoule
added a commit
that referenced
this issue
Feb 8, 2021
This prevents multiple migration engines to concurrently update a database, like other migration tools do. closes #1118
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
domain/schema
tech/engines/migration engine
Issue in the Migration Engine
tech/engines
Issue for tech Engines.
We should make sure that migrations are not running concurrently.
This is implemented by other migration systems, and we can copy the best practices from them.
It would be good to take a look at other migration systems, like activerecord, to find out if there is consensus on locking best practices.
Related issues:
The text was updated successfully, but these errors were encountered: