A distributed spinlock for Python
Project description
Distributed Spinlock
Introduction
This is a simple, yet flexible implementation of a distributed spinlock mutex. A mutex is a way to lock a resource under contention, for more information about mutexes you can read here. In particular, a Spinlock is a type of mutex that blocks the waiting thread and continuously polls the target mutex to see when it can be acquired. This can be useful when you have many stateless distributed services that are in contention for the same resource. For example, this can be reflected when you want to avoid duplicate computations while a query is already being executed.
Note: the documentation in readthedocs
is always generated against the latest published version, thus there might
be differences if you are using the checkout from main
avenue to install.
Preliminaries
The implementation is based on redis
and practically is the only required dependency to successfully install the
library. For more configuration options and usage directions, please read on.
Installation
To use the library, please install it as follows,
# assuming you are in a virtual environment
pip install py-dspilock
Any requirements will be installed automatically, but the minimum required version of redis
client is set to
be 4.0.0
.
Usage
Out of the box, the library provides a distributed spinlock implementation that can be used with any object that
implements Hashable
. Practically, this means that the object instance can be hash
ed. For example,
# a string is hashable,
s = "example"
# its hash value can be extracted as such,
s_hash = hash(s)
Thus, a practical example that you can use out of the box is the following,
"""A basic example of how to use the HashDSpinlock."""
from dspinlock import HashDSpinlock
if __name__ == "__main__":
with HashDSpinlock("example"):
print("executed task_id: 1")
If you do not supply any arguments, then the default parameters are used. Meaning that the following hold,
redis
connection gets created with the predefined parameters (host:localhost
, db:1
, port:6379
)fail_if_key_exists
: is set toFalse
cached_if_computed
: is set toFalse
.
Parameterising redis
connection
Ideally, the redis
connection should not be created for every call we make to the spinlock mutex. Thus, ideally,
we should be caching that and passing it as an argument as such,
"""An example of how to use the HashDSpinlock with an existing `redis` connection."""
from dspinlock import HashDSpinlock
from dspinlock.utils import create_redis_conn
# using default parameters
sess = create_redis_conn()
if __name__ == "__main__":
with HashDSpinlock("example", sess=sess):
print("executed task_id: 1")
If no arguments are supplied to create_redis_conn
method, then a connection with the default parameters is created.
To parameterise it, we can use the following,
"""An example of how to use the HashDSpinlock with an existing parameterised `redis` connection."""
from dspinlock import HashDSpinlock
from dspinlock.utils import create_redis_conn, RedisParameters
params = RedisParameters(
redis_host="localhost",
rdb=0,
port=6379,
ssl=False,
socket_connect_timeout=2,
decode_responses=True
)
# using default parameters
sess = create_redis_conn(params)
if __name__ == "__main__":
with HashDSpinlock("example", sess=sess):
print("executed task_id: 1")
For more information, please check the source code at the link.
Extending the base class to fit your needs
While a default Spinlock is supplied, it is very common that you might want to subclass it in order to customise
its functionality. There are two avenues to do that, you can subclass HashDSpinlock
directly, or you can
subclass its base abstract class DSpinlockBase
. Most of the functionality is contained in the base abstract class,
hence you need to only implement the methods shown in HashDSpinlock
and tweak any of the base class values such as,
max_spinlock_tries
: The spinlock max retries, by default 10 tries.spinlock_sleep_thresh
: The spinlock sleep threshold, by default 0.5 seconds.expire_at_timedelta
: Sets timedelta from creation that the mutex expires, by default 1 hour.max_block_time
: The max block time allowed for a query mutex to be held, if not released it's forcefully unblocked.
Extending HashDSpinLock
to tweak above values
"""An example of how to subclass `HashDSpinlock` while tweaking its base attributes."""
from dspinlock import HashDSpinlock
class CustomSpinlock(HashDSpinlock):
"""Custom class that overrides the basic variables"""
spinlock_sleep_thresh: float = 0.1
"""Tweak the threshold for spinlock sleep."""
if __name__ == "__main__":
with CustomSpinlock("example"):
print("executed task_id: 1")
Advanced customisation
The library provides the primitives so that you can create your own subclasses based on either HashDSpinlock
or the
baseclass itself. To so do, you can override these functions,
_get_uid
: returns the unique identifier for the instance, by default it is thehash
of the object,_get_tag
: the tag of the instance which is used to "tag" the actual mutex value,- _
unpack_value
: defines the way we unpack the value retrieved fromredis
, get_key
: returns the key that should be uniquely identifying each entry.
You do not have to override all of them, but for more details you can see how the HashDSpinlock
itself is
implemented.
Note: Python 3 does not support stable hashing for str
, bytes
, and datetime
. In these instances, we use a stable
hashing algorithm from hashlib
, namely sha256
based digests.
Enable logging
The library uses a custom logger in order to provide diagnostic information. To enable the logger, to do two things.
Firstly you need to set the environment variable - using any value - with the key: SL_LOG_ENABLED
. After, you have
to set your basic logger to accept at least DEBUG
level messages, as all diagnostic ones are set to that level.
The code snippet that accomplishes that is shown below,
import logging
from dspinlock import HashDSpinlock
from dspinlock.consts import SL_LOG_LEVEL
# ensure your basic logger exists
logging.basicConfig(level=SL_LOG_LEVEL)
if __name__ == "__main__":
# now you see some debug messages in the default format of the library.
with HashDSpinlock("example"):
print("executed task_id: 1")
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
File details
Details for the file py-dspinlock-0.2.8.tar.gz
.
File metadata
- Download URL: py-dspinlock-0.2.8.tar.gz
- Upload date:
- Size: 20.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3d3fd2059a51fcfd24a857ba29a01d538bc8c02cd444aefdd9df1e5c6bf50290 |
|
MD5 | a2a1aca75155c158b551b70ee06147b0 |
|
BLAKE2b-256 | c35be0940e453369990dd46251571cdb966ede7b33965480d10f89676474decf |
File details
Details for the file py_dspinlock-0.2.8-py3-none-any.whl
.
File metadata
- Download URL: py_dspinlock-0.2.8-py3-none-any.whl
- Upload date:
- Size: 20.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4fd75a525b6422c4a20c81633fe266297e2bd3835488f3714435a406ba3214aa |
|
MD5 | 39865504872e7bdcdfa3e60d9bb66a8f |
|
BLAKE2b-256 | 84a051afc4bfefb7febd0ed02f244a789f406b82a26608cef4acbbe7bed70dbc |