smallrye-reactive-messaging icon indicating copy to clipboard operation
smallrye-reactive-messaging copied to clipboard

SmallRye Reactive Messaging

Results 183 smallrye-reactive-messaging issues
Sort by recently updated
recently updated
newest added

In case of the failure-strategy set to dead-letter-queue, if there is an exception while processing the message, the message can be consumed from the dead-letter queue topic, as described in...

### The problem In Kafka Test Companion's `ProducerBuilder` and `ConsumerBuilder`, the properties seem to be treated inconsistently: - The constructors of both `ProducerBuilder` and `ConsumerBuilder` use the signature `Map` -...

We need to send a large number of events at the same time to a Kafka topic through an emitter: ```java public class EmitterService { private final Emitter emitter; public...

I'm hoping to use this implementation of MP Reactive Messaging outside of Quarkus. I'm primarily trying to spin up some Kafka consumers in a Vert.x app. Initially it seemed straightforward...

Documentation `reconnect-interval` configuration property of AMQP client is misleading. [Please see here](https://smallrye.io/smallrye-reactive-messaging/3.22.0/amqp/receiving-amqp-messages/#configuration-reference) Below is mentioned in the docs : ![image](https://user-images.githubusercontent.com/25226785/206364427-5ed9a1a0-4056-4cd7-9647-8e3f8a414029.png) But this is not the correct behavior of client [see...

bug
amqp

JMS specifications has a couple of constraints/limitations: 1) message acknowledgment is disallowed from a thread other than the message delivery thread of the Session that runs the MessageListeners. Jackarta group...

jms

Bumps [io.opentelemetry.semconv:opentelemetry-semconv](https://github.com/open-telemetry/semantic-conventions-java) from 1.21.0-alpha to 1.23.1-alpha. Release notes Sourced from io.opentelemetry.semconv:opentelemetry-semconv's releases. Version 1.22.0 Update to semconv 1.22 (#29) Compile only opentelemetry-api dependency (#30) 🙇 Thank you This release was...

dependencies
java

I use quarkus-smallrye-reactive-messaging-rabbitmq in my quarkus project provide: ```java @Incoming("test-a") @Outgoing("test-b") public Message provide(Message message) { final OutgoingRabbitMQMetadata metadata = new OutgoingRabbitMQMetadata.Builder() .withContentEncoding(StandardCharsets.UTF_8.name()) .withContentType("application/json") .build(); System.out.printf(new String(message.getPayload())); message.ack(); return Message.of(new...

rabbitmq

Would be nice to have possibility to setup binding to queue different exchanges with routing key .

enhancement
rabbitmq

At the moment, we cannot handle the demand correctly after a reconnection. The underlying RabbitMQ client (from Vert.x) requests Long.MAX_VALUE item, in this case, ignores the application demands. As a...

rabbitmq