This directory contains a set of demo around reactive in Quarkus with Kafka. It demonstrates the elasticity and resilience of the system.
Install java dependencies (java 17 and Maven are required)
mvn clean packageInstall node.js dependencies (node.js is required)
cd barista-node-kafka/ && npm installInstall Docker.
You need to run:
- the coffee shop service
- one or more of the HTTP, Quarkus Kafka or Node.js Kafka baristas
In 3 or more terminals:
cd coffeeshop-service
mvn quarkus:devThis also starts the Kafka Dev Service and create the orders topic with 4 partitions.
cd barista-quarkus-http
java -jar target/quarkus-app/quarkus-run.jarcd barista-quarkus-kafka
mvn quarkus:devcd barista-node-kafka
npm startThe first part of the demo shows HTTP interactions:
- Barista code: me.escoffier.quarkus.coffeeshop.BaristaResource
- CoffeeShop code: me.escoffier.quarkus.coffeeshop.CoffeeShopResource#http
- Generated client: me.escoffier.quarkus.coffeeshop.http.BaristaService
Order coffees by opening http://localhost:8080. Select the HTTP method.
Stop the HTTP Barista, you can't order coffee anymore.
- 
Barista code: me.escoffier.quarkus.coffeeshop.KafkaBarista: Read fromorders, write toqueue
- 
Bridge in the CoffeeShop: me.escoffier.quarkus.coffeeshop.messaging.CoffeeShopResource#messagingjust enqueue the orders in a single thread (one counter)
- 
Get prepared beverages on me.escoffier.quarkus.coffeeshop.dashboard.BoardResourceand send to SSE
- 
Open browser to http://localhost:8080/ 
- 
Order coffee with Order coffees by opening http://localhost:8080. Select the messaging method.
- Stop the Kafka barista(s)
- Continue to enqueue order
- On the dashboard, the orders are in the "IN QUEUE" state
- Restart the barista
- They are processed
- Build barista-quarkus-kafkawith native image:mvn package -Pnative 
- Start a second barista with:
./barista-quarkus-kafka/target/barista-kafka-1.0-SNAPSHOT-runner -Dquarkus.http.port=9999 
- Order more coffee
- Open a new terminal and run npm startagain.
The dashboard shows that the load is dispatched among the baristas.