django-q2 icon indicating copy to clipboard operation
django-q2 copied to clipboard

A multiprocessing distributed task queue for Django based on Django-Q

Results 65 django-q2 issues
Sort by recently updated
recently updated
newest added

Hi, is there anyway to have the cluster auto-reload whenever the code is updated (basically what the standard Django instance does)? The current workaround is to manually reload it every...

Thanks for picking up django-q !! There's a serious issue that I reported in the original repo: https://github.com/Koed00/django-q/issues/371 TLDR: admin integration allows privileged users to run arbitrary python code, which...

I'm currently successfully using Django-Q2 for queueing email tasks using 'django.core.mail.send_mail' as detailed in the [docs](https://django-q2.readthedocs.io/en/master/examples.html#emails). However, I've had a new requirement to send emails with additional fields that means...

I faced a weird issue when using the `schedule` function to run a dummy task that executes an IO log every minute. I monitored the problem using the `orm` broker...

I have a fairly standard Django-Q configuration (I believe) but I am running into prohibitively high CPU consumption. Running a simple addition task scheduled every minute, I'm seeing CPU usage...

This is still very much a work in progress! Just saving this here as a draft to track progress. It's pretty much a full rewrite of the library. There is...

Hello I want to run multiple clusters on a django project . I found this in the docs: "You can have multiple clusters on multiple machines, working on the same...

Hey, I am working on a video editing project. Sometimes video processing can take a lot of time. So I want to run multiple tasks at same time. What I...

First off, thanks for giving new life to django-q! In the old repo there are several issues discussing maintaining multiple queues. We've had success with a `qclusters` command that looks...