Our Blog

Boost your knowledge with the insights from our expert team.

API
API
Close
Business
Business
Close
Web
Web
Close
Talk
Talk
Close
Python
Python
Close
Design
Design
Close
People
People
Close
Open Source
Open Source
Close
Javascript
Javascript
Close
placeholder background

Ensuring reliability in Django Celery tasks: a comprehensive guide

Master task management with Celery in Python. Learn best practices for Django Celery tasks to ensure reliability and efficiency in your applications.

placeholder background

Vinta Talks: making the most of Django with Celery

In partnership with Django Boston, Vinta promoted a workshop on how to boost Django projects with Celery. Learn more and scale your web applications using Celery.

placeholder background

Two Django Talks: secrets to reliable Celery integration + strategies for API development

In collaboration with Boston Python, we hosted two Django Talks. Topics included API Client Generation with DRF-Spectacular and Reliable Async Tasks with Celery. Connect and learn from our experiences.

placeholder background

Celery Async Tasks: Strategies for Resilience, Monitoring, and Debugging

Explore essential strategies for crafting robust Celery async tasks. Learn how to ensure resilience, monitor errors, and simplify debugging in this comprehensive guide.

placeholder background

Demystifying Python Celery: Understanding the Key Components and Result Storage

In this article, you will understand how a task queue works and what are the components of its architecture. We will focus on Celery, the most popular tool for the job in Python projects.

placeholder background

Dealing with resource-consuming tasks on Celery

Let's go through two of the problems that may happen if we don’t take care of our routes: delay and resource starvation.

placeholder background

How to make sure your Celery Beat Tasks are working

Celery is a great tool to run asynchronous tasks. It handles situations where you don't want to lock web requests with time consuming operations or when you want things to happen after some time or even in specific date/time in the future.