Skip to main content

django-dbsemaphore — multi-ticket semaphores implemented on top of DB row locks

Project description

Django-DBSemaphore

This gives you multi-ticket DB-defined semaphores implemented on top of DB row locks.

Alternatives

The orthodox alternatives are:

Why not use those then?

If a process which holds a Posix or SysV mutex ticket crashes while holding the ticket, it can't return it to the semaphore. Thus, you can leak tickets. But if a process which holds a ticket from Django-DBSemaphore crashes, its database connection goes with it, which terminates the DB transaction and frees the ticket. Crashing processes don't leak tickets.

And why not a lockfile?

Locked files (or locked byte ranges) disappear when a process crashes; its file descriptors are gone thus so are its locks. That's a great property. However, file locks are not multi-ticket. The file (or byterange therein) is either locked or not. The OS file locking APIs are good to implement mutexes with, but not semaphores — except, trivially, a 1-ticket semaphore — which is a mutex ;-).

Quirks

  • In contrast to Posix/SysV semaphores and lockf-based approaches, with django-dbsemaphore you can't block until a ticket becomes available.
  • From within the same transaction you can acquire tickets you already have over and over. In fact, it's currently impossible to get new tickets of a semaphore on a transaction that already has a ticket of that same semaphore. Typically, you won't need multiple tickets of the same semaphore in the same transaction, but a future version of this software might make it possible. In the meantime, consider using multiple semaphores for your multistage semaphore needs.
  • At the base level, they work within transactions. If you want to use dbsemaphore.semaphore.acquire(), you'll need to structure your ticket acquisitions around DB transactions, and close those transactions (rollback or commit) to return the tickets. However, there is a context manager (dbsemaphore.contextmanager.semaphore_ticket()) that abstracts all of that away for you and makes it easy to use a ticket from anywhere in your code. See below.

Compatibility

Currently this is tested on PostgreSQL 14 and Django 3.2.

  • It currently doesn't work on SQLite due to the way in which tables are locked in semaphore.make()
  • MySQL, Oracle: Untested.
  • (neat) Patches welcome!

Installing

  1. pip install django-dbsemaphore
  2. add 'dbsemaphore' to your Django's settings.INSTALLED_APPS.
  3. run ./manage.py migrate dbsemaphore or some variation of such

How to use it

Have a look at the below examples, run the Django test, or read test.py.

Semaphore management

from dbsemaphore import semaphore as sem

# Creates a semaphore called 'test' with 3 tickets
>>> sem.make('test', 3)

# Increases the number of tickets of semaphore 'test' to 4.
# Blocks on concurrent calls of `make`.
# If 'test' doesn't exist, it will be created (with 4 tickets).
>>> sem.make('test', 4)

# Decreases the number of tickets of semaphore 'test' to 2.
# This can block, in the worst case until all tickets have been returned.
# As `make` calls block on eachother, this thus also blocks any *increase* of tickets until this decrease has succeeded.
>>> sem.make('test', 2)

# Returns a dictionary of available semaphores, with their ticket counts.
>>> sem.list()
{'test', 2}

# Destroys the semaphore. Blocks until all its tickets have been returned.
>>> sem.destroy('test')

Acquiring tickets; what we're here for!

With the contextmanager

from dbsemaphore.contextmanager import semaphore_ticket

# We use the semaphore named 'test' that we have created above.
with semaphore_ticket('test') as theticket:
    if theticket is None:
        print("Boo! No ticket was available!")
    else:
        do_the_ticketed_thing()

Using the lower-level API

from django.db import transaction
from dbsemaphore import semaphore as sem

@transaction.atomic
def do_something_potentially_from_many_processes_or_threads_but_not_too_many_at_the_same_time():
    # We use the semaphore named 'test' that we have created above.
    if ticket := sem.acquire('test'):
        do_that_something()

# When the transaction terminates, the ticket is returned to the semaphore.
# In fact, there isn't any API function to explicitly return a ticket...

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_dbsemaphore-0.1.2.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_dbsemaphore-0.1.2-py3-none-any.whl (11.6 kB view details)

Uploaded Python 3

File details

Details for the file django_dbsemaphore-0.1.2.tar.gz.

File metadata

  • Download URL: django_dbsemaphore-0.1.2.tar.gz
  • Upload date:
  • Size: 11.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for django_dbsemaphore-0.1.2.tar.gz
Algorithm Hash digest
SHA256 73bd7f92d6983c96dc10443128902ff562f47c3453d3e4706e2167e76a94b3cc
MD5 773a06f2da409ff08b6a630dfe94136e
BLAKE2b-256 197ea79ffdbcffaed649572fe1b495dce3385b4f081e6dc64a74b060db1b64f8

See more details on using hashes here.

File details

Details for the file django_dbsemaphore-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for django_dbsemaphore-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 03b02819a8411aa9160408d9a8fa187353a32edcff29a6f0f74bc8193b58021d
MD5 03755eab3a272472769e156fae268a99
BLAKE2b-256 faea9ca83a4d22eab16ad954826157f0ed9c7ef96e974f07dd244b811860e92b

See more details on using hashes here.

Supported by

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