Blog
Tagged posts: 'kafka'
How to build a Quarkus application using Apache Kafka in less than 10 minutes
How to use Kafka and Avro in a native executable
How to send and receive Cloud Events with Quarkus, Kafka and Reactive Messaging
Offset commiting strategies in the Kafka connector
Emitting messages with Reactive Messaging Emitters
How to Use Kafka, Schema Registry, and Avro with Quarkus
How to combine reactive messaging, Kafka and the Rest client
Kafka Streams is a very popular solution for implementing stream processing applications based on Apache Kafka. It lets you do typical data streaming tasks like filtering and transforming messages, joining multiple Kafka topics, performing (stateful) calculations, grouping and aggregating values in time windows and much more. Unlike other streaming query engines that run on specific processing clusters, Kafka Streams is a client library. This means a (Java) application is needed which starts and runs the...