A multithread-safe resource pool based on synchronized queue
Project description
The main problem with psycopg2.pool (https://github.com/psycopg/psycopg2/blob/master/lib/pool.py), for example, is that the pool raises an exception (instead of blocking) when there are no more connections in the pool, and you either have to match the number of connections to the number of workers, or implement retry logic. Also, it doesn’t implement connection recycling (on timeout or usage count), and therefore, doesn’t fully address issue with stale connections and suited less (scales worse) for large production installations.
This implementation is based on synchronized queue (https://docs.python.org/3/library/queue.html), and thus multithred safe. This is a streamlined port from Java version that was implemented about ten years ago and that has since then been running in heavy production evironment of one of our financial clients.
This implementation features:
A pool of generic resources that can be extended for specific resources like psycopg2 connections. Psycopg2 connection pool implementation is provided.
On-demand lazy resource opening.
Idle and open timeout recycling. Requires user code to execute pool.recycle() method periodically (or start recycler thread by pool.startRecycler()), for example, once a minute. If this method isn’t executed periodically, then the recycling is performed only when the resource are either taken or returned back to the pool, and therefore, the pool can accumulate a number of idle connections that exceed the idle or open timeouts.
Usage count recycling.
Recycling on exception.
Recycling on a resource status.
Context manager allows to use the pool with “with” context manager so that the resources could be returned safely to the pool.
LIFO queue helps the pool keep number of open resources to the minimum.
This pool can be utilized successfully in large production installations as it tries to keep the number of open resources to the minimum, yet providing sufficient number of “hot” (open) resources to avoid open/close cost.
License
OSI Approved 3 clause BSD License
Prerequisites
Python 3.7+ (with queue)
For psycopg2 connections: psycopg2 2.8.2+
Installation
If prerequisites are met, you can install queuepool like any other Python package, using pip to download it from PyPI:
$ pip install queuepool
or using setup.py if you have downloaded the source package locally:
$ python setup.py build $ sudo python setup.py install
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 Distribution
File details
Details for the file queuepool-1.3.2.tar.gz
.
File metadata
- Download URL: queuepool-1.3.2.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0.post20201006 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0d6770ba588add74240d626267fa787bf98b407bff36edadc048d26d0abd550 |
|
MD5 | 891cbb754ae7cf65c6df08cdd9d5b1c3 |
|
BLAKE2b-256 | f9b87b797b11342434ab5648bd9a548e03d221a6044a9b0042c9b1ec4bd4b5b8 |
File details
Details for the file queuepool-1.3.2-py3-none-any.whl
.
File metadata
- Download URL: queuepool-1.3.2-py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0.post20201006 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be93fbcf49c11e88a31557658d9ba953d5b0a30b6ccc7e8cc6b0c1c273a1a88d |
|
MD5 | 38ec120552b558cf60c54cc9cc49c4c2 |
|
BLAKE2b-256 | 28efb364259c14bbd7075bd5f2227ef74e09504d22277cf7e86aa2fca65d482c |