Questions tagged [smallrye-reactive-messaging]
107 questions
0
votes
2 answers
Change kafka host and port when using Quarkus & SmallRye
I am un unable to change Kafka host and port when I need to run it through docker-compose. I want to use same docker-compose to run my services and Kafka. so I need to change Kafka host.
I tried to provide the following environment variable with no…

iabughosh
- 481
- 5
- 19
-1
votes
1 answer
Is there any way in Quarkus to control the @incomming message from Kafka
I'm new to quarkus, I would like to listen to a kafka topic but only in some environments.
@Incoming("my-topic")
public void consumeCreation(Record record) {
MyClass teste = record.value();
(more…

Nuno
- 3
- 1