Currently I have a Quarkus app which consumes from a Kafka topic and produces on another Kafka topic. It uses SmallRye Reactive Messaging. It works well. Due to external changes the topic to produce on and the topic to consume from will be on Kafka servers which are on a different cluster (and should not/cannot be combined in one cluster).
In the application configuration (yaml) we set the Kafka server (broker):
kafka:
bootstrap:
servers: localhost:9092
Adding a server here does not help, it then tries to spread data over the brokers which is not my intention.
Is it possible to connect to multiple clusters (maybe set a server per topic)? Can't find anything on that on internet not in the Quarkus docs nor in the SmallRye docs.