Ahmad W Khanblog.ahmadwkhan.com·Nov 26, 2024Mastering Microservices and Event-Driven Systems with PythonSoftware development has undergone significant changes in the past decades. What started as procedural programming evolved into object-oriented design, monolithic architectures, and eventually distributed systems. With growing system complexity and d...53 readsPython
Ankur sainiankur0213.hashnode.dev·Nov 25, 2024Kafka is not for you!Kafka is widely use as a messaging or Message Broker system. As we all knows that Kafka has high throughput means it can handle millions of requests and data at a time without facing any problem. It provide the amazing scalability powers to you. It r...#blogwithcc
Parth Chauhanparthdev.hashnode.dev·Nov 23, 2024Understanding RabbitMQ: A Powerful Message Broker for Scalable ApplicationsIn today's world of distributed applications, seamless communication between different services is critical for achieving scalability, reliability, and fault tolerance. One of the most effective ways to handle this communication is through message qu...1 likerabbitmq
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...30 likes·250 readscelery
Aditya Bondeadityabonde.hashnode.dev·Nov 11, 2024Hands-On with Scalable Microservices Development:Ecommerce SystemIn this hands-on guide, we’ll dive into building a sample microservices project, walking through essential development tools and stack choices. From service communication to deployment, this post covers practical tips and best practices to help you c...Dev BlogMicroservices
Oluwajuwon Faloreoluwajuwonfalore.hashnode.dev·Nov 11, 2024Getting Started with RabbitMQ in Golang: A Beginner's GuideWhat is RabbitMQ, and Why Use It? RabbitMQ is a message broker, which helps reliably send messages between applications. Imagine you’re building an online shop. You might need to notify users when their orders are confirmed, trigger stock checks, or ...rabbitmq
Faiz A. FarooquiforFaiz's Blogblog.faizahmed.in·Oct 22, 2024Microservices in NestJS with RabbitMQ & PostgreSQLIn this blog post, we will walk you through the process of setting up a task manager application using NestJS and RabbitMQ. This application is composed of multiple microservices, each with a specific responsibility. We will cover the installation, c...Microservices
Karan Kulshresthakarankulx.hashnode.dev·Oct 16, 2024Designing a Scalable Architecture for Time-Consuming Background Processing ServicesWhen developing web services beyond standard CRUD operations—such as image processing, compression services, rendering services, or PDF processing—handling time-consuming background tasks can pose significant challenges. These services often struggle...10 likes·78 readsscalability
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 ...123 readsPython
Milan Jovanovićmilanjovanovic.hashnode.dev·Oct 5, 2024Implementing the Outbox PatternIn distributed systems, we often face the challenge of keeping our database and external systems in sync. Imagine saving an order to a database and then publishing a message to a message broker. If either operation fails, your system ends up in an in...outbox