Skip to main content

Utils for using Zookeeper locks through kazoo in Django commands and views.

Project description

Django Kazoo Locks

example workflow Coverage Status

About

Django Kazoo Locks provides a utils for using Zookeeper locks through kazoo in Django applications.

Install

pip install django-kazoo-locks

Usage

Register app in INSTALLED_APPS and define following settings:

ZOOKEEPER_APP_NAMESPACE = 'some-unique-app-name'
ZOOKEEPER_HOSTS = ['10.32.96.201:2181']

Usage example:

lock = Lock('my-lock-{object_id}')
with lock(object_id=123):
    print('so alone')

try:
    with lock(object_id=123, timeout=9):
        print('so alone')
except LockTimeout:
    print('unable to lock after waiting for 9s')

try:
    with lock(object_id=123, blocking=False):
        print('so alone')
except Locked:
    print('unable to lock immediately')

Extras

Migrations

This package defines its version of the data migration command - migrate_with_kazoo. Thanks to this command it is possible to quickly and correctly perform data migration process in applications running simultaneously on many different hosts and using the same database. The command can be used independently or as a base class for the migrate command in your own application. The __init__ method of the defined class accepts the optional lock argument, which allows you to define your own kazoo_locks.locks.Lock object to protect the critical section of the migration.

License

The Django Kazoo Locks package is licensed under the FreeBSD License.

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

django-kazoo-locks-2.0.0.tar.gz (11.0 kB view details)

Uploaded Source

Built Distribution

django_kazoo_locks-2.0.0-py3-none-any.whl (14.5 kB view details)

Uploaded Python 3

File details

Details for the file django-kazoo-locks-2.0.0.tar.gz.

File metadata

  • Download URL: django-kazoo-locks-2.0.0.tar.gz
  • Upload date:
  • Size: 11.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for django-kazoo-locks-2.0.0.tar.gz
Algorithm Hash digest
SHA256 180a8d70ba779de5e093c0e84ba70b220448aba6ecd44e00128435e2cae4a631
MD5 c9c982c2b30ced6b1c300721cbc50597
BLAKE2b-256 aec39ec5b8293811a874557f480dfd9e1a4f10077cb133b259e10aa5f8de06cc

See more details on using hashes here.

File details

Details for the file django_kazoo_locks-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: django_kazoo_locks-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 14.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for django_kazoo_locks-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 eb7b589c14d40c25b05b46ae986ffdb3e0679349e8fd8bad1e2c2b73998ab8ac
MD5 63fa18cc3f5d205b9f0715052b7f6781
BLAKE2b-256 0dcadfdaecfc116a666779cb583939a7a932af6c0eb16d9f79317c41afd22ee2

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