Showing 1 to 6 of 11 blog posts tagged with "celery".
-
Getting Started with Dagster
Recently, Caktus has been using Tailscale to manage VPN connections between Android tablets and a central server. We wanted to report on the devices connected to the network us... Read more
December 9, 2024 -
How to Use Celery for Scheduling Tasks
There are multiple ways to schedule tasks in your Django app, but there are some advantages to using Celery. It’s supported, scales well, and works nicely with Django. Given it... Read more
August 11, 2021 -
How to Schedule Tasks Using Celery Beat in a Container
When running services in a container, changes to files can be discarded at any time, but the Celery beat default scheduler keeps its state in a file. We can help these tools to... Read more
May 14, 2020 -
Don't keep important data in your Celery queue
The Celery library (previous posts) makes it as easy to schedule a task to run later as calling a function. Just change: send_welcome_email('dan@example.com') to: send_welc... Read more
October 18, 2016 -
PyCoder's Weekly: Caktus Included in Top Projects and Articles of 2014
The weekly Python e-mail newsletter, Pycoder’s Weekly included Caktus Developer Dan Poirier’s post, Celery in Production on their list of the best articles and projects of 2014!... Read more
January 16, 2015 -
Celery in Production
(Thanks to Mark Lavin for significant contributions to this post.) In a previous post, we introduced using Celery to schedule tasks. In this post, we address things you might n... Read more
September 29, 2014