Questions tagged [quarkus-reactive]

132 questions
0
votes
0 answers

How do I programmatically authenticate a user in quarkus when reading from an inbound topic?

Okay, I admit this is a bit of a weird question. But we are in the process of moving our application from SpringBoot to Quarkus. So far, so good until I came upon this little problem. In Spring, we have an InputChannelInterceptor which pulls out a…
0
votes
0 answers

Quarkus receive Multipart

I have a microservice that receives a Rest Post call, and must return a MultipartFormDataOutput (or something equivalent) with json and several bytes of images. I have another microservice that makes a Rest Post call to this service, it needs to…
Regolus
  • 1
  • 1
0
votes
0 answers

keycloak devservices wont start if i set oidc.auth-server-url

In my quarkus application.properties i want to start the keycloak dev services on a pre determend Port quarkus.keycloak.devservices.port=8180 quarkus.keycloak.admin-client.server-url=http://localhost:8180 this works perfectly fine but when i want…
0
votes
0 answers

Quarkus Rest Easy dependency injection error in @RestClient, when Gateway interface is also implemented

Quarkus legacy RestEasy gives error of "unsatisfied dependency" when @RestClient annotation is used on gateway to inject in service layer and Mock of that same gateway is also implemented at the same time. The gateway is like…
0
votes
0 answers

Open Telemetry Baggage not getting propagated across quarkus microservice stack

I am adding Baggage to an existing trace as shown below. What I find is that the baggage is not getting propagated. 'traceId','spanId' do get propagated though. What could be wrong with the setup below ? Quarkus version 2.16.5Final Service A : try…
Kiran K
  • 703
  • 4
  • 11
0
votes
0 answers

Use Hazelcast with Quarkus reactive

I am try to integrate Reactive Quarkus application with Hazelcast for caching and to mange distributed data(because multiple pods can run). I created sample project. https://github.com/kavishkamk/hazelcast-quarkus-test. But I have to convert this…
0
votes
1 answer

Is there a point to Mutiny Uni if I have to await()?

My application is using Quarkus, but not taking advantage of Mutiny / reactive programming yet. It's not realistic to re-implement everything at this time, I'm considering using it in certain places (like the quarkus reactive sql client, or…
0
votes
1 answer

Quarkus Open Telemetry (distributed tracing) does not carry over traceId across Threads

Here is a sample application I have written to explain the problem. Below is a rest end point that receives a request and on a different thread performs some operations. As you will see , the traceId is not copied over as soon as the execution goes…
Kiran K
  • 703
  • 4
  • 11
0
votes
0 answers

read file in Quarkus Reactive

I am try to read a json file and get that json string in my quarkus application. I am using reactive pattern using Mutiny. How can I write this using reactive pattern in quarkus InputStream inputStream =…
0
votes
0 answers

Is it possible to add custom claims to an auth0 access token programmatically (I am using Quarkus), i.e., without calling auth0 actions/auth... server

Is it possible to add custom claims to an auth0 access token programmatically (I am using Quarkus), i.e., without calling auth0 actions/authorization server. I could find documentation and example to add custom claim using Auth0 Actions and custom…
Vemai Clan
  • 33
  • 4
0
votes
0 answers

A global JSON-based response on non-existent paths

Dear Quarkus community, I'm having a quick question: how to set / specify / what-to-implement in Quarkus to get a JSON based response for generic 404 cases? By default, an HTML based response is returned. For an API only service, that may not be…
dxps
  • 78
  • 7
0
votes
1 answer

Reactive redis add key-value-expiration

I'm using quarkus, it has a reactive connection to redis. I need to add key-value-expiration. Due to the fact that this is reactive programming, I do not understand how to do this, please help. there is an example, but it doesn't have an example of…
Арчи
  • 1
  • 2
0
votes
1 answer

Quarkus Mutiny retry failes because on another thread on version 3.0.3 Final

This topic is a continuation of question asked here: Quarkus Mutiny retry failes because on another thread I created a test project here: github.com/sfeliks/retry-test When application is executed and Scheduler starts, SchedulerService throws test…
Slawomir
  • 15
  • 3
0
votes
0 answers

Unable to configure queryTimeout and connection keepAlive for Quarkus reactive datasource

I am trying to set few properties like queryTimeout and keepAlive for my Quarkus reactive Oracle client but I am not able to find these properties in the Quarkus documentation. How do we handle queryTimeout and connection keepAlive for Quarkus…
0
votes
0 answers

Using multiple data sources in a Quarkus application

I am trying to develop a quarkus application that uses PostgreSQL database. Also I have a scheduler that is configured to work using jobrunr. Is it possible that I use two different PostgreSQL databases with one configured as a reactive connection…
1 2 3
8 9