Ronit Banerjeeronitbanerjee.com·Aug 26, 2024Message streaming with Apache Kafka on KubernetesApache Kafka is an excellent distributed messaging and stream-processing platform for real-time data processing. Its integration with container orchestration platforms like Kubernetes has become essential in the era of microservices and containerized...Discusskafka
Shaileshshaileshpashte.hashnode.dev·Aug 25, 2024Introduction to Amazon SQS: Messaging Basics ExplainedIntroduction Messaging systems play a critical role in modern distributed applications by enabling asynchronous communication between different components of an application. This decouples the producers and consumers, allowing each to operate indepen...DiscussAWS
Sushant Pantsushantpant.com.np·Aug 20, 2024Messaging & Queuing technologiesIn my previous article, I explained distributed system and communication between them. In this article, I will cover an asynchronous way to establish communication between services through a method known as messaging using some queuing technologies. ...Discuss·26 readsDistributed Systemmessaging
Sushant Pantsushantpant.com.np·Aug 19, 2024Understanding distributed systemIntroduction 2 words "distributed" and "system" meaning a system which is built up of multiple components that work together as-a-whole. For instance, consider an online platform like Amazon. It is made up of various services to handle inventory mana...Discuss·11 likes·61 readsDistributed Systemdistributed system
Nicanor Talks Webblog.nicanor.me·Aug 14, 2024Cloud Messaging PatternsCloud messaging is a fundamental component of modern distributed systems. It involves the exchange of information between different software components or applications. The core idea is to decouple systems, allowing them to operate independently whil...DiscussCloud
Aleksei Zagoskinzagosk.in·Jul 28, 2024Get To Know Your Message BrokerMessage brokers are a crucial part of many asynchronous distributed systems. Just like blood vessels transport blood throughout the human body, message brokers transmit streams of countless messages between applications. Today, we're going to take a ...Discuss·42 readsmessage queue
Umesh Panditumeshpandit.hashnode.dev·Jul 22, 2024How to Use Azure Service Bus for Reliable Messaging: A Practical TutorialImagine the internet as a web of computers, with each playing its unique role. Some generate data, some consume it, and others process it. Nonetheless, how do they consistently communicate seamlessly, even if they are kilometers away from each other?...Discuss·39 readsAzure messaging
Sean Coughlinblog.seancoughlin.me·Jun 24, 2024Understanding Messaging Queues: The Backbone of Modern Software ArchitectureIntroduction In today's fast-paced and interconnected digital world, the need for robust and efficient communication between different components of a software system is paramount. Messaging queues have emerged as a vital solution to this challenge, ...Discuss·1 like·32 readsSoftware EngineeringSoftware Engineering
Deven devendraadhikari.com.np·Jun 2, 2024Setting Up Celery, Celery Beat, Redis, and DjangoThis guide will walk you through the detailed process of setting up and using Celery with Redis in a Django application. We'll cover task creation, enqueuing tasks, using Redis as a message broker, processing tasks with Celery workers, and scheduling...Discuss·50 readsDjango
Sandeep Choudharysandeepc.hashnode.dev·May 22, 2024Understanding Point-to-Point (P2P) MessagingIn the point-to-point messaging model, messages are sent from a producer to a single consumer via a queue. Each message is consumed by one consumer. This model is suitable for scenarios where each message requires processing by a single recipient. P2...DiscussIntegration Point-to-Point