diff options
author | Jenkins <jenkins@review.openstack.org> | 2015-03-15 14:19:43 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2015-03-15 14:19:43 +0000 |
commit | de9439c457dc865d2192684f0292d59674afc785 (patch) | |
tree | 7313389df2522bb5fd6e2954796746718b3cb240 | |
parent | 464a3d028fdfa3c5e4826f21c72f4c92c8e34235 (diff) | |
parent | ebbf23d6490159f0c8f4f35a08fb4b80371cd080 (diff) | |
download | oslo-db-de9439c457dc865d2192684f0292d59674afc785.tar.gz |
Merge "Add process guards + invalidate to the connection pool"
-rw-r--r-- | oslo_db/sqlalchemy/session.py | 33 | ||||
-rw-r--r-- | oslo_db/tests/sqlalchemy/test_sqlalchemy.py | 28 |
2 files changed, 61 insertions, 0 deletions
diff --git a/oslo_db/sqlalchemy/session.py b/oslo_db/sqlalchemy/session.py index 7e33075..6a0355d 100644 --- a/oslo_db/sqlalchemy/session.py +++ b/oslo_db/sqlalchemy/session.py @@ -280,11 +280,13 @@ Efficient use of soft deletes: import itertools import logging +import os import re import time from oslo_utils import timeutils import six +from sqlalchemy import exc import sqlalchemy.orm from sqlalchemy import pool from sqlalchemy.sql.expression import literal_column @@ -476,6 +478,8 @@ def _init_connection_args(url, engine_args, **kw): def _init_events(engine, thread_checkin=True, connection_trace=False, **kw): """Set up event listeners for all database backends.""" + _add_process_guards(engine) + if connection_trace: _add_trace_comments(engine) @@ -609,6 +613,35 @@ def get_maker(engine, autocommit=True, expire_on_commit=False): query_cls=Query) +def _add_process_guards(engine): + """Add multiprocessing guards. + + Forces a connection to be reconnected if it is detected + as having been shared to a sub-process. + + """ + + @sqlalchemy.event.listens_for(engine, "connect") + def connect(dbapi_connection, connection_record): + connection_record.info['pid'] = os.getpid() + + @sqlalchemy.event.listens_for(engine, "checkout") + def checkout(dbapi_connection, connection_record, connection_proxy): + pid = os.getpid() + if connection_record.info['pid'] != pid: + LOG.debug(_LW( + "Parent process %(orig)s forked (%(newproc)s) with an open " + "database connection, " + "which is being discarded and recreated."), + {"newproc": pid, "orig": connection_record.info['pid']}) + connection_record.connection = connection_proxy.connection = None + raise exc.DisconnectionError( + "Connection record belongs to pid %s, " + "attempting to check out in pid %s" % + (connection_record.info['pid'], pid) + ) + + def _add_trace_comments(engine): """Add trace comments. diff --git a/oslo_db/tests/sqlalchemy/test_sqlalchemy.py b/oslo_db/tests/sqlalchemy/test_sqlalchemy.py index 24aeb22..433affe 100644 --- a/oslo_db/tests/sqlalchemy/test_sqlalchemy.py +++ b/oslo_db/tests/sqlalchemy/test_sqlalchemy.py @@ -648,6 +648,34 @@ class CreateEngineTest(oslo_test.BaseTestCase): ) +class ProcessGuardTest(test_base.DbTestCase): + def test_process_guard(self): + self.engine.dispose() + + def get_parent_pid(): + return 4 + + def get_child_pid(): + return 5 + + with mock.patch("os.getpid", get_parent_pid): + with self.engine.connect() as conn: + dbapi_id = id(conn.connection.connection) + + with mock.patch("os.getpid", get_child_pid): + with self.engine.connect() as conn: + new_dbapi_id = id(conn.connection.connection) + + self.assertNotEqual(dbapi_id, new_dbapi_id) + + # ensure it doesn't trip again + with mock.patch("os.getpid", get_child_pid): + with self.engine.connect() as conn: + newer_dbapi_id = id(conn.connection.connection) + + self.assertEqual(new_dbapi_id, newer_dbapi_id) + + class PatchStacktraceTest(test_base.DbTestCase): def test_trace(self): |