Actions
Backport #9598
closedBackport #9276 to 3.16: Content app can have unusable/closed db connections in pulpcore 3.15/3.16
Status:
CLOSED - CURRENTRELEASE
Priority:
High
Assignee:
Category:
-
Sprint/Milestone:
Start date:
Due date:
% Done:
100%
Estimated time:
Triaged:
Yes
Sprint Candidate:
No
Tags:
Katello
Sprint:
Sprint 109
Quarter:
Description
We've seen multiple times the django.db.utils.InterfaceError: connection already closed
while using content app. See related issues.
A current workaround is to reset the db connection in multiple places in the code. This "solution" is likely not reliable if we are not resetting db connection before every db request.
This problem needs investigation to understand why Django doesn't take care of the db connections itself, and how to solve it properly.
Related issues
Updated by dkliban@redhat.com almost 3 years ago
- Copied from Issue #9276: Content app can have unusable/closed db connections in pulpcore 3.15/3.16 added
Updated by dkliban@redhat.com almost 3 years ago
- Sprint/Milestone deleted (
3.17.0)
Updated by pulpbot almost 3 years ago
- Status changed from NEW to POST
Added by dkliban@redhat.com almost 3 years ago
Updated by dkliban@redhat.com almost 3 years ago
- Status changed from POST to MODIFIED
- % Done changed from 0 to 100
Applied in changeset pulpcore|1ddf16a033f8880a0ac7a5034a0fc44ab93b74f2.
Updated by pulpbot almost 3 years ago
- Status changed from MODIFIED to CLOSED - CURRENTRELEASE
Actions
Handles closed db connections
When the authentication middleware was added in pulpcore 3.15, it became the first place in the content app that made an attempt to use the database. As a result, it is a convinient place to handle InterfaceError and OperationalError which are raised when the database connection has been closed. When this occurs, Handler._reset_db_connection() is called to clean up the database connection and the middleware tries to use the database again.
If the database connection is closed later in the handling of the request by the content app, the user will still get a 500 error. However, the next request will be handled properly.
This patch also adds a call to Handler._reset_db_connection() inside the heartbeat method.
backports #9276
fixes: #9598 https://pulp.plan.io/issues/9598
(cherry picked from commit 3faa649ddb0737c23d1e309a8c38ecb41804cebe)