I am trying to build Kafka Streams app with Quarkus. I was wondering can I some how have multiple topologies in same Quarkus app?
I was trying achieve it like this:
@ApplicationScoped
public class TestToplogy {
@Produces
public Topology buildTopology() {
final StreamsBuilder builder = new StreamsBuilder();
// ...
return builder.build();
}
@Produces
public Topology buildTopology2() {
final StreamsBuilder builder = new StreamsBuilder();
// ...
return builder.build();
}
}
Or by using multiple @ApplicationScoped classes in same project:
@ApplicationScoped
public class TestToplogy1 {
@Produces
public Topology buildTopology() {
final StreamsBuilder builder = new StreamsBuilder();
// ...
return builder.build();
}
}
@ApplicationScoped
public class TestToplogy2 {
@Produces
public Topology buildTopology() {
final StreamsBuilder builder = new StreamsBuilder();
// ...
return builder.build();
}
}
Both approaches end up in exception jakarta.enterprise.inject.AmbiguousResolutionException
because Quarkus Kafka Streams expects only one Topology to get resolved by injection.
Is there anyway to get multiple topologies up and running in one Quarkus application (jar)?
The only method that worked for me so far is the older approach described on Quarkus blog, which allows to create and configure multiple instances of Kafka Streams.
It has the advantage of allowing to apply different configurations to Kafka Streams instances, at the cost of:
NOTE that the
application.id
(my-app-topology-a
in the example above) needs to differ between individual topologies, otherwise they won't be able to correctly register with the broker.Following the comment under the original question, I tried applying custom @Qualifier-annotated annotations, but whilst these eliminated the exception, my
@Produces
-annotated methods were not being invoked. Attempted with Quarkus 3.5.1.This has now been reported as an issue in Quarkus repo.