Questions tagged [smallrye-reactive-messaging]
107 questions
0
votes
0 answers
Not found exception smallrye-kafka producer in quarkus application
have a simple poc built on quarkus to send a avro message to a kafka topic.
below is the configurations that were loaded -
acks = 1
batch.size = 16384
bootstrap.servers = [kaas-test-dc-a.company.com:443]
buffer.memory = 33554432
client.dns.lookup =…

Chandan Mishra
- 13
- 4
0
votes
1 answer
Configuring reactive messaging in quarkus for the AWS Glue Schema Registry
Having an issue integrating the AWS Glue schema registry with quarkus reactive messaging. I have a property defined as:
mp.messaging.outgoing.eligibility.schemaName=
Notice the camelcase in schemaName. The Glue schema registry is…

John DeStefano
- 33
- 4
0
votes
1 answer
ActiveMQ Artemis: creating queue programmatically from smallrye-reactive-messaging (AMQP)
My Quarkus microservice is using the AMQP connector in the smallrye reactive messaging library to produce messages to the ActiveMQ Artemis broker running from the vromero/activemq-artemis:2.16.0-alpine Docker image. The reactive messaging library…

kosmičák
- 1,043
- 1
- 17
- 41
0
votes
1 answer
Quarkus - Understanding error Request failed: java.lang.IllegalStateException: SRMSG00028: The subscription to events has been cancelled
I am using Quarkus to proxy request to another REST service. Everything works fine when the downstream service is running. When I shutdown the downstream and send request, for example a curl request, through Quarkus the first request gets stuck,…

anaray
- 309
- 1
- 8
0
votes
1 answer
How to propagate JTA state when using reactive-messaging?
I would like to propagate JTA state (= the transaction) between a transactional REST endpoint that emits a message to a reactive-messaging connector.
@Inject
@Channel("test")
Emitter emitter;
@POST
@Transactional
public Response test() {
…

stphngrtz
- 201
- 3
- 13
0
votes
2 answers
Quarkus - SmallRye Reactive Messages: InMemoryConnector unknown channel
I am following the following guide https://smallrye.io/smallrye-reactive-messaging/smallrye-reactive-messaging/2/testing/testing.html to test without a kafka broker.
I have set up the following QuarkusTestResource:
public class InMemoryKafka…

user3727540
- 922
- 3
- 11
- 30
0
votes
0 answers
Quarkus Reactive Messaging doesn't start separate thread using JMS connector and SmallRye implementation
In my scenario the application reads messages from a JMS queue by using a CDI-Producer.
@Produces
public ConnectionFactory connectionFactory() {
JmsFactoryFactory ff;
JmsConnectionFactory factory;
try {
// Get a new…

Mark Hunt
- 25
- 5
0
votes
1 answer
Exception when no consumers set in Reactive messaging in Quarkus
I followed the official Quarkus messaging guide and create a simple example to taste the Reactive messaging feature using AMQP(Apache Artemis).
The complete code is here.
The example is working but a small issue there, I have to start a curl to…

Hantsy
- 8,006
- 7
- 64
- 109
0
votes
1 answer
Quarkus BackPressure configuration
I got the following stacktrace using quarkus smallrye reactive messaging with kafka :
2020-07-24 01:38:31,662 ERROR [io.sma.rea.mes.kafka] (executor-thread-870) SRMSG18207: Unable to dispatch message to Kafka:…

bdeweer
- 135
- 1
- 14
0
votes
1 answer
Quarkus reactive messaging with kafka
I have two microservices, a producer and a consumer. The producer writes an increment of a number every two seconds to a kafka topic. The consumer has two instances running, consuming these increments. I have noticed a few odd things that I want to…

John Doe
- 259
- 1
- 6
- 18
0
votes
0 answers
Quarkus / Smallrye Reactive Messaging - message redelivery
I'm currently investigating the Smallrye Reactive Messaging integration in Quarkus.Sending and receiving messages is really simple and elegant at first glance.
But one thing which I didn't find out is: How to handle a re-delivery of…

JoachimG
- 1
0
votes
1 answer
How to send message by message to Kafka
I'm new to reactive programming and I try to implement a very basic scenario.
I want to send a message to kafka each time a file is dropped to a specific folder.
I think that I don't understand well the basics things... so please could you help…

bdeweer
- 135
- 1
- 14
0
votes
1 answer
My Camel route app detects other app's published ampq message(?), but, fails to handle, with "no type converter available" error. How can I resolve?
My Camel route app detects other app's published ampq message(publishes numbers), but, fails to handle, with "no type converter available" error. How can I resolve?.
"org.apache.camel.NoTypeConversionAvailableException: No type converter available…

sairn
- 461
- 3
- 24
- 58
0
votes
1 answer
Can't to determine why smallrye/camel code snippet is not compiling: no subscriber method in camel context obj?
The smallrye documentation (from https://smallrye.io/smallrye-reactive-messaging/) cites an example code snippet that I'm having trouble compiling...
i.e.,
10.4. Using Camel Route in @Incoming method
Here is an example of method annotated with…

sairn
- 461
- 3
- 24
- 58
0
votes
1 answer
Reactive messaging AMQP and Service Bus with Open Liberty
Open Liberty comes with the feature mpReactiveMessaging-1.0 which includes a Kafka connector.
I want to integrate with Azure Service Bus and I use the Smallrye AMQP connector (version 1.0.8).
When trying to send to a Service Bus queue using…

Daniel
- 744
- 8
- 24