Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Blog example: Non-concurrent Celery task #505

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions styleguide_example/blog_examples/celery_non_concurrent/tasks.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
import logging
from functools import wraps

from celery import shared_task

from styleguide_example.tasks import celery_app

inspect = celery_app.control.inspect

logger = logging.getLogger(__name__)


def non_concurrent_task(_func=None, *args, **kwargs):
def wrapper(func):
@wraps(func)
def inner(_bound_self, *_func_args, **_func_kwargs):
running_task_count = 0

queues = inspect().active()

if queues is None:
queues = {}

for running_tasks in queues.values():
for task in running_tasks:
if task["name"] == _bound_self.name:
running_task_count += 1

if running_task_count > 1:
logger.warning(f"[non_concurrent_task] Task {_bound_self.name} is already running")
return

return func(*_func_args, **_func_kwargs)

return shared_task(bind=True, *args, **kwargs)(inner)

if _func is None:
return wrapper

return wrapper(_func)


@non_concurrent_task
def test_non_concurrent_task():
logger.info("A non-concurrent task is running")
import time
time.sleep(10)
logger.info("A non-concurrent task finished")
2 changes: 2 additions & 0 deletions styleguide_example/blog_examples/tasks.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# ruff: noqa
from styleguide_example.blog_examples.celery_non_concurrent.tasks import test_non_concurrent_task