dramatiq VS django-q

Compare dramatiq vs django-q and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
dramatiq django-q
15 8
4,061 1,792
- -
7.3 0.0
about 21 hours ago about 2 months ago
Python Python
GNU Lesser General Public License v3.0 or later MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

dramatiq

Posts with mentions or reviews of dramatiq. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-12.

django-q

Posts with mentions or reviews of django-q. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-30.
  • Background jobs with Django
    4 projects | /r/django | 30 May 2023
    Other options are DjangoQ and Huey, which tend to work ok. Of the two I prefer DjangoQ. Database backed, don't require the Redis/Celery rigmarole.
  • Why are Notifications so much work to do in Django?
    5 projects | /r/django | 8 Jan 2023
    If you want a "simple" solution for sending email, the simplest that will likely last you the longest is using DjangoQ to create a background task that looks for model records that have not been emailed. Then use Sendgrid with an email backend to send them. You can use a library that already provides a Sendgrid email backend as well.
  • Simple Task Queue system that works with Django 4 / Python 3.9?
    5 projects | /r/django | 16 Aug 2022
  • celery and call_command
    1 project | /r/django | 26 Jul 2022
    Take a look at Django-Q I was using it before moving to celery. Seems great just wanted experience with celery. Much simpler to get setup. Even use Django admin to schedule your tasks. Other option is a management command thats called using the full path of the python virtual env from a cron entry.
  • New DigitalOcean Pricing
    1 project | news.ycombinator.com | 17 May 2022
    App Platform is a great concept, but we hit a dealbreaking road block when trying to migrate some Python apps with job queues. Their runtime (gVisor) doesn't support semaphore locks, which is used by Pythons multiprocessing and in turn used by most job runners (we discovered it with django-q, but I think most, if not all of them including Celery, rely on this, see link below).

    The build times for Dockerfiles are also atricious… our build failed after 40 minutes by running out of memory and the multi-stage Dockerfile really wasn't anything special. We would have just used the images hosted on Github Container Registry, but App Platform only supports a limited range of Docker registries too. Note: the images build in 3 minutes on Github Actions.

    As far as I can see it is also not possible to add any block storage too. While I mostly work on projects that use object storage anyway, SOME things just need persistent block storage. Which is annoying, since DigitalOcean HAS block storage… just not for App Platform.

    I really wanted to use it, but man they make it hard.

    https://github.com/Koed00/django-q/issues/522#issuecomment-1...

  • Database backed task queue recommendations?
    1 project | /r/django | 14 Apr 2022
    I use Django Q with ORM broker. Store tasks in db and retry if failed. You can also view/manage your queue in Django admin if you use ORM as broker (https://django-q.readthedocs.io/en/latest/brokers.html#django-orm).
  • what are 3 django packages everyone should know about?
    31 projects | /r/django | 7 Dec 2021
    django-q - Light weight task queue. When celery is too much over head.
  • Whats the best Task Queue/Scheduler that could run my API calls in the background?
    1 project | /r/django | 7 Aug 2021
    Check out https://github.com/Koed00/django-q

What are some alternatives?

When comparing dramatiq and django-q you can also consider the following projects:

celery - Distributed Task Queue (development branch)

django-db-queue - Simple database-backed job queue

huey - a little task queue for python

django-jazzmin - Jazzy theme for Django

Cython - The most widely used Python to C compiler

django-rq - A simple app that provides django integration for RQ (Redis Queue)

Pyston - A faster and highly-compatible implementation of the Python programming language.

django-post_office - A Django app that allows you to send email asynchronously in Django. Supports HTML email, database backed templates and logging.

Stackless Python

whitenoise - Radically simplified static file serving for Python web apps

PyPy

django-health-check - a pluggable app that runs a full check on the deployment, using a number of plugins to check e.g. database, queue server, celery processes, etc.