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...Discuss#blogwithcc
Joshua Akosadevwithjosh.com·Oct 11, 2023CQRS and Event Sourcing In C# .NET (Part 2)Introduction to Event Sourcing In part one of this series, we explored CQRS. This article continues from where we stopped in part one (CQRS and Event Sourcing in C# .NET (Part 1)) and builds upon the code developed there. Kindly go through part one, ...Discuss·21 likes·3.1K readsDistributed ArchitectureC#
Carlos Armando Marcano Vargascarlosmv.hashnode.dev·Jul 17, 2023How to Integrate Apache Pulsar with FastAPIThis is an article about how to set up Apache Pulsar, produce messages and consume them using FastAPI. This article will not show all the features of Apache Pulsar, or FastAPI. Apache Pulsar and FastAPI are two powerful technologies that when combine...Discuss·124 readsPython
Carlos Armando Marcano Vargascarlosmv.hashnode.dev·Jul 4, 2023Messaging Made Easy: A List of Message Brokers and Event Streaming PlatformsIntroduction I start to write this article to know more about message brokers and Event Streaming Platforms, and to understand more about how Event-Driven applications work. Message brokers and event streaming platforms are two important technologies...Discuss·370 readsmessage broker
Marcia Villalbablog.marcia.dev·May 16, 2023Serverless analytics at scaleThis blog post collects all the resources for the talk: "Serverless analytics at scale". The code The backend code: https://github.com/mavi888/kinesis-firehose-demo The webapp code: https://github.com/mavi888/voting-app-amplify Building everything in...Discuss·71 readsserverless
Botmanprogrammercave.hashnode.dev·Apr 14, 2023Getting Started with Kafka and Go: Reading Messages and Inserting into a DatabaseIntroduction: Kafka is a popular distributed streaming platform that is used for building real-time data pipelines and streaming applications. It is designed to handle high-volume data streams in real-time and provide reliable and scalable data strea...Discuss·45 readskafka
Seth Chensethphat.dev·Mar 29, 2023Event Stream for dummiesHi guys, Another sharing today but really cool topic for backend guys out there 😉 I'll share with you the Event Stream and what are the benefits of it. And it could be your next awesome tool besides the normal Queue. What is an Event Stream? An even...Discuss·63 readsTech tipsevent-driven-architecture
Joshua Stewardconcurrentflows.com·Jan 25, 2023Kafka Producer - C# Sync vs AsyncRules of Thumb We're taught early and often that any I/O Bound operations should be done Asynchronously. A general rule of thumb is that anything that takes more than 50ms should be done async. While this is quite true in most cases, sometimes, just ...Discuss·4.0K readsC#
Mladen Drmacsenselessevents.hashnode.dev·Dec 7, 2022Containerizing the ConsumerOur system currently consists of 2 .NET console applications communicating through Kafka + Zookeeper living inside Docker containers. Not bad for a start, but we can do better. We want to have a fully scalable, easily deployable distributed system, a...Discuss·34 readsSenseless eventsevent streaming
Mladen Drmacsenselessevents.hashnode.dev·Dec 6, 2022Consuming eventsWe now have a way to generate events, but how do we consume them? There are various ways in which 2 processes can communicate, but we're mainly interested in a way that allows the producer and the consumer to be decoupled from each other. A typical w...Discuss·112 readsSenseless eventskafka