Kafka two incoming channels, same event type #27135
Unanswered
GrischaGoebel
asked this question in
Q&A
Replies: 1 comment
-
/cc @alesj, @cescoffier, @ozangunalp |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
i have a quarkus service with multiple modules that might be split into their own services in the future.
I use kafka and two modules must listen to the same event type in the same topic.
When i add the second consumer i get the error message
The attribute
value.deserializeron connector 'smallrye-kafka' (channel: my-event-consumer) must be set
How can i tell the two
incoming
channels to just use the same generated deserializer?incoming:
channel-one-in:
group:
id: group-one
connector: smallrye-kafka
topic: ${KAFKA_EVENTS_TOPIC}
channel-two-in:
group:
id: group-two
connector: smallrye-kafka
topic: ${KAFKA_EVENTS_TOPIC}
Regards,
Grischa
Beta Was this translation helpful? Give feedback.
All reactions