Spring AMQP in Reactive Applications 1. Overview This tutorial shows how to create a simple Spring Boot Reactive Application that integrates with the RabbitMQ messaging server, a popular implementation of the AMQP messaging standard. We cover both – point-to-point and publish-subscribe scenarios – using a distributed setup that highlights the… Continue Reading spring-amqp-reactive

Exactly Once Processing in Kafka 1. Overview In this tutorial, we’ll look at how Kafka ensures exactly-once delivery between producer and consumer applications through the newly introduced Transactional API. Additionally, we’ll use this API to implement transactional producers and consumers to achieve end-to-end exactly-once delivery in a WordCount example. 2.… Continue Reading kafka-exactly-once