-
-
Notifications
You must be signed in to change notification settings - Fork 8
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
Problem: SQLite Write Lock #6
Comments
Seems there was a recent change that could help with that behavior: django/django@a0204ac (but it can still take some time until that becomes available) The root issue is described in the ticket: https://code.djangoproject.com/ticket/29280 |
Probably resolved for now. Will re-open if recurring |
Had this one over night - the whole service was essentially stuck. |
Versions
latest
Scope
Backend (API)
Issue
Since implementing the repository functionality we randomly see
OperationalError: database is locked
errors occurring.It looks like some write operation locks the database for multiple seconds.
SQLite only supports one write-operation at a time. This is a known limitation.
We should not run into that limitation for some time. The writes we perform are not data-intensive and should easily be done in < 0.1s
The text was updated successfully, but these errors were encountered: