Skip to main content

Python library that emulates the java-based dynamo-db-client from awslabs

Project description

Python DynamoDB Lock

https://img.shields.io/pypi/v/python_dynamodb_lock.svg https://img.shields.io/travis/whatnick/python_dynamodb_lock.svg Documentation Status

This is a fork of the currently unmaintained (2 years) of Python DynamoDB Lock project. In the spirit of open-source whatnick is maintaining this while there is some time. Any enhancements targeting this project can be sent here.

This is a general purpose distributed locking library built on top of DynamoDB. It is heavily “inspired” by the java-based AmazonDynamoDBLockClient library, and supports both coarse-grained and fine-grained locking.

Features

  • Acquire named locks - with configurable retry semantics

  • Periodic heartbeat/update for the locks to keep them alive

  • Auto-release the locks if there is no heartbeat for a configurable lease-duration

  • Notify an app-callback function if the lock is stolen, or gets too close to lease expiry

  • Store arbitrary application data along with the locks

  • Uses monotonically increasing clock to avoid issues due to clock skew and/or DST etc.

  • Auto-delete the database entries after a configurable expiry-period

Consistency Notes

Note that while the lock itself can offer fairly strong consistency guarantees, it does NOT participate in any kind of distributed transaction.

For example, you may wish to acquire a lock for some customer-id “xyz”, and then make some changes to the corresponding database entry for this customer-id, and then release the lock - thereby guaranteeing that only one process changes any given customer-id at a time.

While the happy path looks okay, consider a case where the application changes take a long time, and some errors/gc-pauses prevent the heartbeat from updating the lock. Then, some other client can assume the lock to be abandoned, and start processing the same customer in parallel. The original lock-client will recognize that its lock has been “stolen” and will let the app know through a callback event, but the app may have already committed its changes to the database. This can only be solved by having the application changes and the lock-release be part of a single distributed transaction - which, as indicated earlier, is NOT supported.

That said, in most cases, where the heartbeat is not expected to get delayed beyond the lock’s lease duration, the implementation should work just fine.

Refer to an excellent post by Martin Kleppmann on this subject: https://martin.kleppmann.com/2016/02/08/how-to-do-distributed-locking.html

Credits

History

0.9.3 (2020-07-14)

  • Forked Release from whatnick via CI

0.9.2 (2020-07-13)

  • Forked Release from whatnick manual

0.9.1 (2019-10-29)

  • Main repository second release

0.9.0 (2018-10-28)

  • First release on PyPI.

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

python_dynamodb_lock_whatnick-0.9.3.tar.gz (27.0 kB view details)

Uploaded Source

Built Distribution

python_dynamodb_lock_whatnick-0.9.3-py2.py3-none-any.whl (14.6 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file python_dynamodb_lock_whatnick-0.9.3.tar.gz.

File metadata

  • Download URL: python_dynamodb_lock_whatnick-0.9.3.tar.gz
  • Upload date:
  • Size: 27.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.7

File hashes

Hashes for python_dynamodb_lock_whatnick-0.9.3.tar.gz
Algorithm Hash digest
SHA256 45aab8aac3d2917780c98aa56adeab6daef6394df9720aeb17730d3ee6466602
MD5 9c4ea859d71f9373d23090fb4eda917d
BLAKE2b-256 1c5ed04625f1351c954e9ff560e21072462bc4702a5a933a31dbe93da2cc9a67

See more details on using hashes here.

File details

Details for the file python_dynamodb_lock_whatnick-0.9.3-py2.py3-none-any.whl.

File metadata

  • Download URL: python_dynamodb_lock_whatnick-0.9.3-py2.py3-none-any.whl
  • Upload date:
  • Size: 14.6 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.6.7

File hashes

Hashes for python_dynamodb_lock_whatnick-0.9.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 6bee6f7c6cd5200314b32e6b3b245584d57c2eb13c9b921ea0b33e593bbca4d2
MD5 565d8d2af404a2b91f79eeaf179a903f
BLAKE2b-256 a0c735a1e78f452dcd0630d31cf119d9cc0702b7dfeb429599662f529f34f106

See more details on using hashes here.

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