Skip to main content

A distributed lock implementation based on SQLAlchemy

Project description

SQLAlchemy-DLock

Python package PyPI Documentation Status codecov

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 statement

    from 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:

  • MySQL:

    • mysqlclient
    • PyMySQL
    • aiomysql (asyncio)
  • Postgres:

You can run unit-tests:

  • directly:

    1. Install the project (A virtual environment (venv) is strongly advised):

      pip install -e .
      
    2. Start up your mysql and postgresql

    3. Set environment variables TEST_URLS and TEST_ASYNC_URLS for sync and async database connection url. Multiple connections separated by space. The test cases load environment variables in tests/.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/
      
    4. run unit-test

      python -m unittest
      
  • in docker-compose:

    1. build the project

      python -m pip install build && python -m build -w
      
    2. run unit-test

      cd tests
      docker compose up
      

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

sqlalchemy-dlock-0.3.1.tar.gz (14.5 kB view hashes)

Uploaded Source

Built Distribution

sqlalchemy_dlock-0.3.1-py3-none-any.whl (18.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page