© 2023 Hashnode
#event-streaming
Rules 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 …
Our 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…
We 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 con…
Who are you? I am a software developer with experience in .NET, SQL, APIs, and to a lesser extent JavaScript and TypeScript. Recently I've started studying concepts and technologies related to distrib…
Event-driven architectures (EDA) are an architecture style that uses events and asynchronous communication to loosely couple an application’s components. Event-driven architectures can help you boost …