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.
It's not crystal clear but it's explained on the documentation for exemple on the kafka inbound documentation it is said that you can configure your broker gloablly (using
kafka.<props>
) or per channel.You can pass to each channel all supported Kafka properties :