DDrixstinlonside.hashnode.dev路Feb 22 路 17 min readSaga pattern with KafkaThe problem that kept me awake It was 2 AM. My phone wouldn't stop buzzing. Our order processing system had just lost data consistency. One user had paid but their order wasn't created. Another receiv00
DDrixstinlonside.hashnode.dev路Jan 10 路 3 min readInbox Pattern with SpringBoot Kotlin and KafkaIn the previous article, we explored the Outbox Pattern to guarantee that events are published reliably from a producer service. But publishing events safely is only half of the problem. 馃憠 What happens on the consumer side ? What if the same Kafka ...00
DDrixstinlonside.hashnode.dev路Jan 7 路 5 min readOutbox pattern with SpringBoot Kotlin and KafkaIn a modern microservices architecture, services must communicate asynchronously, decoupled, and reliably. Apache Kafka has become a standard for event transport, but naive usage hides a major risk. 馃憠 How can we ensure that a Kafka event always repr...00