Native Oracle Session Pool implementation for SQLAlchemy
Project description
litex.cxpool - a SQLAlchemy pool with native Oracle session pooling
CxOracleSessionPool is a subclass of SQLAlchemy’s NullPool, with functionality close to QueuePool. It’s major selling point is the ability to run in proxy authentication mode. In this mode, the session pool is constructed with one set of credentials and individual connections can by acquired from it, authenticated for a different user.
It’s being used in Pyramid applications interfacing with an ERP system with all logic, auditing and security contained in Oracle DB stored procedures.
Example usage:
>>> from litex.cxpool import CxOracleSessionPool >>> def get_user(): ... return 'REAL_USER'
get_user is a callable returning login of a user we would like to connect as. To connect to db as currently authenticated user in Pyramid, this function could look like the one below (prefix is used to find the right type of principals, and exclude the system. ones e.g. system.Everyone):
>>> from pyramid.threadlocal import get_current_request >>> from pyramid.interfaces import IAuthenticationPolicy >>> prefix = 'example.' >>> def get_user(): ... req = get_current_request() ... auth = req.registry.queryUtility(IAuthenticationPolicy) ... prc = [pr for pr in auth.effective_principals(req) if pr.startswith(prefix)] ... if prc: ... return prc[0].split('.')[-1] ... else: ... return None
Having the user source, we can construct the pool:
>>> pool = CxOracleSessionPool( ... 'oracle://proxy_user:proxy_password@test_server/test', ... min_sessions=1, ... max_sessions=5, ... increment=1, ... user_source=get_user ... )
First parameter is a database URL with proxy user credentials.
min_sessions controls, how many sessions are constructed initially (in contrast to SA QueuePool this pool precreates sessions)
max_sessions sets the upper cap of constructed sessions count (think about it as QP pool_size + max_overflow)
increment sets how many sessions to create when current session count is too low (up to max_sessions)
To allow REAL_USER to connect to the db through PROXY_USER, one have to issue the following statement as DBA:
sql> alter user REAL_USER grant connect through PROXY_USER;
Having the pool ready, we can construct a SQLAlchemy engine
>>> from sqlalchemy import create_engine >>> engine = create_engine('oracle://', pool=pool)
and use it as any other SA engine:
>>> conn = engine.connect() >>> res = conn.execute('select user from dual') <sqlalchemy.engine.base.ResultProxy object at 0x1670b50> >>> res.fetchone() (u'REAL_USER',)
Changes:
1.1
Compatibile with SQLAlchemy 1.3
Python 3 compatibility
tests are using py.test and tox now
1.0.3
Handling network problems
1.0.2
SQLAlchemy 0.7 compatible
1.0.1
namespace package specification
various packaging errors
1.0
initial release
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file litex.cxpool-1.1.1.tar.gz
.
File metadata
- Download URL: litex.cxpool-1.1.1.tar.gz
- Upload date:
- Size: 3.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d372aac4ef31373b561765b45ed0eae3cc2d9a15111c725d2783bc8d209d639 |
|
MD5 | be4164921463671638016520e7047c7e |
|
BLAKE2b-256 | 92b8b6d0a2c966396b3f17c34e776c2aa8d720bd31189ab68aebe77692069da2 |
File details
Details for the file litex.cxpool-1.1.1-py3-none-any.whl
.
File metadata
- Download URL: litex.cxpool-1.1.1-py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8a0e8f90e9282d048f4010797e1cb1bad52812c3a8e8695aa9450eacddb015e |
|
MD5 | aad74e9a2aedbeb285c025f8b6ce0f74 |
|
BLAKE2b-256 | 5512e393139a70ff8d6f2274f1e8437293a9d087b878daff23b6a950ef1cffb1 |
File details
Details for the file litex.cxpool-1.1.1-py2-none-any.whl
.
File metadata
- Download URL: litex.cxpool-1.1.1-py2-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | acf4b0056719760ba4e4b9c81f0e9313b33807f9c81bc9719e7f87329cbe8f93 |
|
MD5 | 07039a44322423191040c51fea05503c |
|
BLAKE2b-256 | 873b36694fb8e2276ba734c2ec851ba022ecd6b65fd5408f274daa013852d48f |