Snehangshu Bhattacharyablogs.snehangshu.dev·Nov 12, 2024FeaturedA Step-by-Step Guide to Advanced Task Scheduling using Celery Beat and DjangoIn my asynchronous Python blog, I explored multitasking, distributed computing, and related best practices. But sometimes we need to run programs in a periodic manner, where running tasks in parallel does not matter. In many applications, periodic ta...Discuss·29 likes·189 readscelery
Akshat Sharmacarboncoffee.hashnode.dev·Nov 5, 2024Flask - Celery - Redis Boiler PlateSynchronous Tasks Execution Flow: Synchronous tasks are executed sequentially, meaning that the application will wait for a task to complete before moving on to the next one. The main thread of the application is blocked while a synchronous task i...Discuss·38 readsFlask Framework
Gaurav Jaiswalgauravjaiswal.com.np·Oct 31, 2024Building event driven application using Fast API, Django, and KafkaIn this article, I’ll walk through how to build a basic to-do app using event-driven architecture principles. This system is designed to handle high traffic workloads and achieve scalability. Prerequisites This article will focus on using Kafka with ...Discuss·68 readsMicroserviceMicroservices
Snehangshu Bhattacharyablogs.snehangshu.dev·Oct 6, 2024Distributed Computing with Python: Unleashing the Power of Celery for Scalable ApplicationsHave you ever wondered about when you upload an 8K Ultra HD video to YouTube and immediately YouTube starts to process and optimize that video and make multiple copies of it in 1080p, 720p, 480p, 360p and 144p so that your content can be streamed to ...Discuss·109 readsPython
Snehangshu Bhattacharyablogs.snehangshu.dev·Sep 21, 2024Python Multitasking: Key Practices and ChallengesWhen I first encountered the Python language, I was amazed by what you could do with so little code, and it has been one of my favourite programming languages since. Some time ago, I faced a problem where I was trying to create something like a web s...Discuss·112 readsgreenlets
Okesanya Samueldevopsmaestro.hashnode.dev·Aug 20, 2024Stage 3: How to Create a Messaging System with Flask, Celery, and RabbitMQIntroduction Web applications provide various functions to thousands of users. To ensure high performance and low latency, applications run tasks that need immediate responses concurrently and use specific tools to offload other tasks to run in the b...Discuss·1 like·27 readsFlask Framework
Faruq SandiforTensorutensoru.com·Jul 31, 2024Building an Image Compression Web App using FastAPI, Celery, and NextJS, Part 1: Backend.This is my first article on @hashnode, and I'm glad they make it easy to write and let me back up my articles to GitHub. The purpose of this article is to show the tech stacks I often use. I don't want to dive into the technical aspects of this web a...Discuss·44 readsPython
Rajendra PrajapatiforJoBins Engineeringblog.jobins.jp·Jul 23, 2024Boosting Python Email Tasks with Celery, Pipenv, and Python-dotenvCelery is an open-source asynchronous task queue or job queue based on distributed message passing. While it supports scheduling, it focuses on real-time operations. When used with Pipenv, Python's tool for managing dependencies and virtual environme...Discuss·2 likespython-dotenv
anjanj.hashnode.dev·Jul 16, 2024Set Up of a Django Project with PostgreSQL, Celery, Valkey, and RabbitMQ Using VSCode Dev Containers and Docker ComposeWhy Use VSCode Dev Containers? Consider the time wasted installing and maintaining virtual environments or system dependencies across different setups. VSCode Dev Containers eliminate this hassle by containerizing everything. You'll have a clean mach...Discuss·93 readsdevcontainer
Wayne Musunguwaynemusungu.hashnode.dev·Jun 28, 2024How I Learned Celery, Django, and Redis to Perform Rapid Background Asynchronous TasksIntroduction As part of developing the Maji Safi platform(Swahili Word which means Clean Water), a crucial requirement was to handle background tasks efficiently, especially for sending verification emails when new users register. To achieve this, I ...Discuss·11 likes·43 readsDjango