Ankur sainiankur0213.hashnode.dev·6 hours agoConcurrency Session HandlingIn my Train Booking project i have implemented the Redis Lock which can provide a isolation on a particular seat for a particular user. Everything was going in right direction but after some time i faced a problem where user clicked the button on boo...DiscussBlogsWithCC
Alejandro Rodríguezalerodriguez.dev·Nov 13, 2024Lesson Learned #01: Cloud Run with Cloud Pub/SubProject Context I’ve been working on a system built with a microservices architecture that uses Google Cloud Pub/Sub and Cloud Run to manage notifications and keep a continuous NLP analysis flow running smoothly. Each microservice has a specific role...Discuss·2 likes·40 readsPubSub
SREERAJ Rsreeraj6.hashnode.dev·Sep 28, 2024Kafka | Publish/subscribe messagingApache Kafka is an open-source distributed streaming system used for stream processing, real-time data pipelines, and data integration at scale. Publish / Subscribe Model Before discussing the specifics of Apache Kafka, it is important for us to unde...Discusskafka
Vince UragPropapers.vincy.dev·Sep 27, 2024Distributed PubSub in ElixirIn this article, we’ll be exploring on building a distributed PubSub in Elixir. First, we’ll be building a local PubSub which will allow a process to broadcast a message to all local subscribers. Then, we’ll see how we can make it work on a distribut...Discuss·4 likes·2.3K readsElixir
jorzeljorzel.hashnode.dev·Sep 23, 2024FeaturedHow to Integrate Your Services Using GCP Pub-SubPub-Sub (Publish-subscribe) is a great pattern to integrate components in a distributed system. It provides decoupling, allowing services to communicate without depending on each other directly. It enhances resiliency by ensuring reliable message del...Bernardo Gomes de Abreu and 4 others are discussing this5 people are discussing thisDiscuss·17 likes·232 readsPubSub
Rohit Paulrohitpaulscodism.hashnode.dev·Sep 10, 2024An Easy Introduction to Event Driven ArchitectureEvent-Driven Architecture (EDA) is a design approach that emphasizes the production, detection, consumption, and reaction to events within a system. This architecture style allows applications to be more scalable, responsive, and loosely coupled, mak...Discuss·1 likeNode.js
Sushant Pantsushantpant.com.np·Aug 25, 2024Pub-sub patternIn my previous articles, we built a messaging system using RabbitMQ. One limitation of that approach was that each message was delivered to only one consumer. For instance, if we had two consumers promotional.Email and promotional.Sms there would be ...Discuss·10 likes·147 readsDistributed SystemPubSub
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·71 readsDistributed Systemdistributed system
Karthik Anishkarthikanish.hashnode.dev·Aug 8, 2024Leveraging Docker for Google Pub/Sub: A Superior Alternative to EmulatorsIn the world of cloud computing, Google Cloud Pub/Sub offers a powerful messaging service that allows applications to communicate asynchronously. While the Google Pub/Sub emulator is a useful tool for local development, using Docker to run the Pub/Su...DiscussPubSub
Milan Jovanovićmilanjovanovic.hashnode.dev·Jul 27, 2024Simple Messaging in .NET With Redis Pub/SubRedis is a popular choice for caching data, but its capabilities go far beyond that. One of its lesser-known features is Pub/Sub support. Redis channels offer an interesting approach for implementing real-time messaging in your .NET applications. How...Discuss·93 readsRedis Channels