A tiny database de-multiplexer primarily scoped for Web- / Application Server.
Project description
Python PgDatabase-Pool Module
1. Primary Scope
The pgdbpool Python module is a tiny PostgreSQL Database Connection De-Multiplexer, primarily designed for Web- / Application Servers.
2. Current Implementation
+----------------------+ +---------------------
| WebServer Service.py | -- Handler Con #1 ----> | PostgreSQL
| Request / Thread #1 | | Backend
+----------------------+ |
|
+----------------------+ |
| WebServer Service.py | -- Handler Con #2 ----> |
| Request / Thread #2 | |
+----------------------+ +---------------------
2.1. Concept / Simplicity
If configured in a Web Server's WSGI Python script, the pooling logic is straightforward:
- Check if a free connection in the pool exists.
- Verify if the connection is usable (SQL ping).
- Use the connection and protect it from being accessed until the query/queries are completed.
- Release the connection for reuse.
- Reconnect to the endpoint if the connection is lost.
3. Thread Safety / Global Interpreter Lock
Thread safety is currently ensured via lock = threading.Lock(), which relies on a kernel mutex syscall().
While this concept works, the GIL (Global Interpreter Lock) in Python thwarts scalability under heavy loads in a threaded Web Server setup.
[!IMPORTANT] Refer to Section 6: Future for a potential solution to this problem.
4. Dependencies / Installation
Python 3 and the psycopg2 module are required.
# install (debian)
apt-get install python3-psycopg2
pip install pgdbpool
5. Documentation / Examples
See documentation either at ./doc or https://pythondocs.webcodex.de/pgdbpool
for detailed explanation / illustrative examples.
6. Future
The DB-pooling functionality should also be compatible with the FalconAS Python Application Server (https://github.com/WEBcodeX1/http-1.2).
The proposed model: 1 Process == 1 Python Interpreter (threading-less), effectively solving the GIL issue.
[!NOTE] The pool should also be configurable to use multiple (read-load-balanced) PostgreSQL endpoints.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pgdbpool-0.99.tar.gz.
File metadata
- Download URL: pgdbpool-0.99.tar.gz
- Upload date:
- Size: 18.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34a98caa085c933d18ea3aba6600c20db56d0a4f5624d57d3f8abf7b40bcb144
|
|
| MD5 |
1ac5d9bb9e0cb09e9662124f50bc8d34
|
|
| BLAKE2b-256 |
c0026e5c9651db887fe8cbf61880b7ebb6cb57b1759c9337046a0a9ad3156e7a
|