Package to call celery tasks only once per unique key.
Project description
WebCase celery one task caller
Package to call celery tasks only once per unique key.
Installation
pip install wc-django-celery-unicall
In settings.py
:
INSTALLED_APPS += [
'wcd_celery_unicall',
]
Usage
from celery import Celery
from wcd_celery_unicall.task import CACHE_KEY_PREFIX
from wcd_celery_unicall.shortcuts import make_unicall, task
app = Celery('app')
# First after defining and configuring celery app you should change
# the default `Task` class.
# It has a small improvement in `apply_async` method, that will revoke
# other pending tasks that have the same uniqueness key.
app.Task = make_unicall(app.Task)
# ...
from django.core.cache import cache
# All other tasks that you want to check for uniqueness have to be defined
# using a `task` shortcut decorator.
# So instead ow writing `@app.task()` write `@task(app)`.
# But that's not all. To enforce uniqueness check mechanics you must
# provide at least 2 additional parameters: `unicall_key` and `unicall_cache`.
@task(
# Your celery app:
app,
# Function that receives the same arguments that your task, and generates
# unique key to track task execution.
unicall_key=lambda user_id, **_: f'sync_user {user_id}',
# And a django cache backend implementation. This could be anything you
# wish, but `LockMem` cache backend, for example will be useless.
# So this should be "global" cache backend, like redis or memcached.
unicall_cache=cache,
# Optional. Additional TTL, that will be added to key expirity.
unicall_additional_ttl=None,
# Optional. Cache key prefix, if you don't like the default one.
unicall_key_prefix=CACHE_KEY_PREFIX,
)
def do_something(user_id: int, param2: bool = True, param_3=None):
pass
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[Unreleased]
[0.1.0]
Initial version.
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
File details
Details for the file wc-django-celery-unicall-0.1.0.tar.gz
.
File metadata
- Download URL: wc-django-celery-unicall-0.1.0.tar.gz
- Upload date:
- Size: 6.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9cc2b9670028dd586f4805fb14a7f1973188c8f7c0e0dbb7b14c5d4bd9d689b |
|
MD5 | 792f1ffc955f329ac6affa9a5f0f72be |
|
BLAKE2b-256 | 272834e78c901948886b557a3fe1f9f155eeefb67739c3f121554ebfb0111384 |