Dynamic Kafka Topics in Quarkus
This post describes sending Kafka events to dynamic topics in Quarkus. Previously I suggested using the KafkaProducer, but it is pretty much obsolete since Quarkus 2, and all metadata is ignored. I ended up with serialization issues. The solution is to use a standard Emitter and add metadata to the message. For example, this class […]