Questions tagged [smallrye-reactive-messaging]
107 questions
0
votes
0 answers
Quarkus Message Addons with Smallrye Kafka Throws error
I have tried integrating Quarkus start and end with message using Smallrye Kafka.
But i am getting following error when i create kafka connections
Failed to start quarkus: java.lang.RuntimeException: io.quarkus.builder.BuildException: Build…

codeforHarman
- 115
- 1
- 10
0
votes
1 answer
QuarkusTest launches testcontainers though I didn't asked for it ; what's wrong?
Very simple test case (no other code) :
@QuarkusTest
class EndpointTest {
@Test
void testPostMV() {
fail("Not yet implemented"); // TODO
}
}
POM.xml :
...
…

Lbro
- 309
- 2
- 16
0
votes
0 answers
How can I make smallrye message health check work for rabbitmq?
I'm using smallrye healthcheck to check the liveness and readiness of the rabbitmq container.
http://localhost:8080/q/health/live
io.quarkus
quarkus-smallrye-health
The…
0
votes
1 answer
Set MDC on a Quarkus / Kogito Serverless Workflow
I have an application based on Serverless workflows, these work with Kogito Workflow framework built on Quarkus.
I need to add an MDC property to all logs within the same context, I have incoming reactive channels for this. I think I might be able…

josesuero
- 3,260
- 2
- 13
- 19
0
votes
0 answers
Microprofile specification kafka in springboot app
I have an app in Springboot and need to integrate org.eclipse.microprofile.reactive.Messaging. Don't look any documentation of these and I don't know if is possible. I try to use the org.eclipse.microprofile.reactive.Messaging.Emitter and…
0
votes
1 answer
Responding NACK on message in Quarkus reactive code cause the readiness check to fail
I am implementing a use case where I listen to messages coming from a Kafka topic in a quarkus application in a reactive manner. I followed as base code the KafkaDeadLetterTopic class from this Gist included on this blogpost…

jesantana
- 1,241
- 2
- 14
- 27
0
votes
2 answers
Quarkus: Smallrye Kafka configure channels for distinct bootstrap servers using diferent KEYS and PASSWORD
My goal is to produce events in 2 different channels using distinct bootstrap servers using jaas configuration using SASL_SSL, but I am not able to setup the channels to authenticate correctly on the bootstrap servers.
I've tried the following…

Hugo Pais
- 1
- 3
0
votes
0 answers
Rollback kafka message on surrounding transaction failure in Quarkus
I have the following code that given an entity first persist it, and later send it to a Kafka topic.
@POST
@Path("/fruits")
@Transactional
public CompletionStage…

jesantana
- 1,241
- 2
- 14
- 27
0
votes
1 answer
Quarkus migration to 2.x: failed authentication due to: SSL handshake failed. But works in 1.x
We use this configuration for connection to kafka…

Alexis
- 21
- 3
0
votes
0 answers
Quarkus Kafka producer name
I have an emitter mapped to a kafka channel named "orders":
@ApplicationScoped
public class MessageBroker {
@Inject
@Channel("orders")
@OnOverflow(DROP)
Emitter emitter;
I could see the producer name printed in the console…

Keerthi
- 466
- 6
- 12
0
votes
1 answer
Quarkus smallrye kafka UI unexpected error
Nothing fancy just a simple quarkus app with smallrye kafka extension. Message is successfully published and the topic can be seen on the Kafka UI dev console.
But as soon as I click on the topic, I get the below issue:
2022-12-20 17:15:57,522…

Keerthi
- 466
- 6
- 12
0
votes
0 answers
Cant Deserialize LocalDateTime in Quarkus
I'm trying to deserialize an object using Kafka inside a Quarkus Project JDK-17. But It simply won't work. I was having the same issue when serializing the message inside the same project, but using ObjectMapper().registerModule(new…

rafaelpadu
- 1,134
- 2
- 6
- 20
0
votes
0 answers
How to batch process RabbitMQ messages in Quarkus
Is it possible to batch process RabbitMQ messages with Quarkus?
Based on their documentation it seems that it's currently not supported and there is no information on if it's planned.

Marko Kovačević
- 41
- 4
0
votes
1 answer
TooManyMessagesWithoutAckException while processing kafka message in quarkus
In a quarkus process we're performing below steps once the message is polled from kafka
Thread.sleep(30000) - Due to business logic
call a 3rd party API
call another 3rd party api
Inserting data in db
Once almost everyday the process hangs after…

KVS
- 503
- 1
- 5
- 9
0
votes
1 answer
Context propagation opentelemetry - get traceId from kafka record
I'm developing an application with 2 microservices: Microservice A sends data to kafka broker and Microservice B consumes records from kafka and stores data into mysql db. My goal is to get the full trace of a request, starting from the Microservice…