Utility function to run a PostgreSQL query with SQLAlchemy, terminating any other clients that block it
Project description
pg-force-execute
Utility function to run a PostgreSQL query with SQLAlchemy, terminating any other clients that continue to block it after a configurable delay.
Using this function to run queries is somewhat of a last resort, but is useful in certain Extract Transform Load (ETL) pipeline contexts. For example, if it is more important to replace one table with another than to allow running queries on the table to complete, then this function can be used to run the relevant ALTER TABLE RENAME TO
query.
Installation
pip install pg-force-execute
Example usage
import datetime
import sqlalchemy as sa
from pg_force_execute import pg_force_execute
# Run postgresql locally should allow the below to run
# docker run --rm -it -e POSTGRES_HOST_AUTH_METHOD=trust -p 5432:5432 postgres
engine = sa.create_engine('postgresql://postgres@127.0.0.1:5432/')
query = 'SELECT 1' # A more realistic example would be something that needs an exclusive lock on a table
with engine.begin() as conn:
results = pg_force_execute(
sa.text(query), # SQL query to execute
conn, # SQLAlchemy connection to run the query
engine, # SQLAlchemy engine that will create new connections to cancel blocking queries
delay=datetime.timedelta(minutes=5), # Amount of time to wait before cancelling queries
)
print(results.fetchall())
API
The API a single function pg_force_execute
.
pg_force_execute
(query, conn, engine, delay=datetime.timedelta(minutes=5), check_interval=datetime.timedelta(seconds=1), termination_thread_timeout=datetime.timedelta(seconds=10), logger=logging.getLogger("pg_force_execute"))
-
query
- A SQLAlchemy text instance of the query to run -
conn
- A SQLAlchemy connection to runquery
on -
engine
- A SQLAlchemy engine to create a new connection that will be used to terminate backends blockingquery
-
delay
(optional) - How long to wait before attempting to terminate backends blockingquery
-
check_interval
(optional) - The interval between repeated attempted to terminate backends blockingquery
-
termination_thread_timeout
(optional) - How long to wait for the termination to complete -
logger
(optional) The Python logger instance through which to log
Running tests locally
pip install -e ".[dev]" # Only needed once
./start-services.sh # Only needed once
pytest
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
Built Distribution
File details
Details for the file pg_force_execute-0.0.4.tar.gz
.
File metadata
- Download URL: pg_force_execute-0.0.4.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.8.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78bbb8330e1d745ef071f52f59a615e562bdce7ada322aafadbac2f1feee223a |
|
MD5 | c06613106410996a392da8fef24ebbaf |
|
BLAKE2b-256 | d6c163291c9d370007a1998056b7e75bb57f7ce52416837902a8cfad6f12bb48 |
File details
Details for the file pg_force_execute-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: pg_force_execute-0.0.4-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.8.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01dced2b2f41aa5a4fb7c959a8899a171a9cee0d3a911659bbb63b6dca788712 |
|
MD5 | 9b073a206be4f502809ce7f3e310943e |
|
BLAKE2b-256 | aa1cd76f5bc36d27e3343c63db8b6f4c26ce75351f712757f6dcb79152099d43 |