A distributed lock implementation based on SQLAlchemy
Project description
SQLAlchemy-DLock
Distributed lock based on Database and SQLAlchemy.
It currently supports below locks:
Database | Lock |
---|---|
MySQL | named lock |
PostgreSQL | advisory lock |
Usages
-
Work with SQLAlchemy
Connection
:from sqlalchemy import create_engine from sqlalchemy_dlock import create_sadlock key = 'user/001' engine = create_engine('postgresql://scott:tiger@localhost/') conn = engine.connect() # Create the D-Lock on the connection lock = create_sadlock(conn, key) # it's not lock when constructed assert not lock.acquired # lock lock.acquire() assert lock.acquired # un-lock lock.release() assert not lock.acquired
-
with
statementfrom contextlib import closing from sqlalchemy import create_engine from sqlalchemy_dlock import create_sadlock key = 'user/001' engine = create_engine('postgresql://scott:tiger@localhost/') with engine.connect() as conn: # Create the D-Lock on the connection with create_sadlock(conn, key) as lock: # It's locked assert lock.acquired # Auto un-locked assert not lock.acquired # If do not want to be locked in `with`, a `closing` wrapper may help with closing(create_sadlock(conn, key)) as lock2: # It's NOT locked here assert not lock2.acquired # lock it now: lock2.acquire() assert lock2.acquired # Auto un-locked assert not lock2.acquired
-
Work with SQLAlchemy
ORM
session:from sqlalchemy import create_engine from sqlalchemy.orm import sessionmaker from sqlalchemy_dlock import create_sadlock key = 'user/001' engine = create_engine('postgresql://scott:tiger@localhost/') Session = sessionmaker(bind=engine) with Session() as session: with create_sadlock(session, key) as lock: assert lock.acquired assert not lock.acquired
-
Asynchronous I/O Support
ℹ️ info:
from sqlalchemy.ext.asyncio import create_async_engine from sqlalchemy_dlock.asyncio import create_async_sadlock key = 'user/001' engine = create_async_engine('postgresql+asyncpg://scott:tiger@localhost/') async with engine.begin() as conn: async with create_async_sadlock(conn, key) as lock: assert lock.locked await lock.release() assert not lock.locked await lock.acquire() assert not lock.locked
Tests
Following SQLAlchemy engines are tested:
You can run unit-tests:
-
directly:
-
Install the project (A virtual environment (venv) is strongly advised):
pip install -e .
-
Start up your mysql and postgresql
-
Set environment variables
TEST_URLS
andTEST_ASYNC_URLS
for sync and async database connection url. Multiple connections separated by space. The test cases load environment variables intests/.env
.eg (and also the defaults):
TEST_URLS=mysql://test:test@localhost/test postgresql://postgres:test@localhost/ TEST_ASYNC_URLS=mysql+aiomysql://test:test@localhost/test postgresql+asyncpg://postgres:test@localhost/
-
run unit-test
python -m unittest
-
-
in docker-compose:
-
build the project
python -m pip install build && python -m build -w
-
run unit-test
cd tests docker compose up
-
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
Hashes for sqlalchemy_dlock-0.3.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c5d901a20b1f54550c0e23a5ae6a6bf250d69b09074138b65fe65f2ed6d0431 |
|
MD5 | 5fc0ed592dc6be7f40bf5201435621a8 |
|
BLAKE2b-256 | a24f97edf23d962fdd8c7f75d7dc133407fcdcac2f3f2e8993d75f60284a5c02 |