Questions tagged [quarkus-native]
73 questions
0
votes
0 answers
Am i correctly using coroutines in Quarkus project?
I'm working on a big Quarkus non-reactive project. The migration as a reactive one is off the table for now.
I have different long running tasks to start from API calls, tasks that could be cancelled anytime on-demand. So I developped a small…

Pascal
- 49
- 3
0
votes
0 answers
Quarkus rest-easy reactive AWS lamda application is not showing the swagger-ui page in qa env
My Quarkus rest-easy reactive application shows good the OpenAPI swagger docs in local.
http://localhost:8080/q/swagger-ui
I used the below gradle dependnecy
io.quarkus:quarkus-smallrye-openapi
But not showing in the deployed env of QA AWS as a…

Naga Syamala
- 41
- 1
- 5
0
votes
2 answers
Quarkus native build Random/SplittableRandom exception with Vert.x Redis Client
I am doing a native build of my Quarkus app and am hitting the UnsupportedFeatureException: Detected an instance of Random/SplittableRandom on a few Vertx Redis Client classes.
I am building using the docker container method:
./mvnw package -Dnative…

Murrah
- 1,508
- 1
- 13
- 26
0
votes
0 answers
How to create a Quarkus application executable on Windows?
How to create a Quarkus application executable on Windows?
I have created a first Quarkus app from its initializer https://code.quarkus.io/
I have been able to do correctly all the steps indicated in the README.md except the creation of an native…

JLLMNCHR
- 1,551
- 5
- 24
- 50
0
votes
1 answer
DnsClient Incompatible change
I've added some DNS activities (mostly TXT lookups) to my micro-service. After adding these I'm unable to package as per normal issuing ./mvnw package -DskipTests --activate-profiles native --also-make
After adding the lookup routines the following…

user5640015
- 13
- 2
0
votes
0 answers
Problems running Quarkus sample application from a GraalVM image-based Docker container
Working on Windows 10, I downloaded the simple Quarkus sample prototype.
I run it normally and be able to access http://localhost:8118/hello, except if I try to run it from the native image executable for GraalVM.
I have to say that I don't have…

JLLMNCHR
- 1,551
- 5
- 24
- 50
0
votes
0 answers
Error building Quarkus native image with Kafka streams
I am battling down to build a simple Kafka Stream project as a native image. Maybe some build settings are missing or not well documented. I'd appreciate any comment.
This is happening to me only building Kafka Streams. Building other Kafka clients…

jguerra
- 147
- 6
0
votes
0 answers
FATAL exception building a native image with Kafka streams
I am trying to create a native image with a simple Kafka stream and since a while ago, I got an ugly WARN exception and later on a FATAL exception.
I tested out in a Quarkus 2.13, 2.14 and 2.15 with the same output.
The FATAL exception stops the…

jguerra
- 147
- 6
0
votes
0 answers
native build failure: classes specified in --initialize-at-run-time still say that they are requested to be initialized at run time
I'm new to Quarkus and trying to build a native image using "mvn package -Pnative". I received the error "Error: Classes that should be initialized at run time got initialized during image building:" so in the pom.xml I added an additional build arg…

tkb2022
- 1
0
votes
1 answer
Quarkus native build issue
I have created a sample project and tried the following native build command:
./mvnw package -Pnative -Dquarkus.native.container-build=true -Dquarkus.native.container-runtime=docker -DskipTests -X
It failed with the following.
[INFO]…

Nicholas Loke
- 23
- 6
0
votes
0 answers
Quarkus Native : Java security exception
How to register AES for BC to the Quarkus native image?
I am getting the following error
java.security.NoSuchAlgorithmException: no such algorithm: AES for provider BC
at sun.security.jca.GetInstance.getService(GetInstance.java:87)
at…

user3577622
- 145
- 1
- 1
- 9
0
votes
0 answers
How to run quakusIntTest against a running application using gradle?
The testing guide states that you can run integration tests using against a running app using:
./mvnw verify -Dquarkus.http.test-host=1.2.3.4 -Dquarkus.http.test-port=4321
I am trying to the the same thing, but using gradle:
./gradlew quarkusIntTest…

Guilherme Torres Castro
- 15,135
- 7
- 59
- 96
0
votes
0 answers
Problem configuring test container with native image
Trying to test the native application image in quarkus.
My native application is already built and I want to test its functionality.
My test have 2…

KilkaLosowychWyrazów
- 13
- 6
0
votes
0 answers
Reactive Quarkus app behaving differently when run as Java or native
I have a reactive quarkus app with hibernate-panache-reactive. The problem is it behaves differently when I run it as a Java app or a native app.
The app
loads a lot of data from a MySQL DB via hibernate-panache-reactive
builds a graph based on the…

Ben
- 1,922
- 3
- 23
- 37
0
votes
1 answer
Quarkus - Not picking changes from jar
I have two projects A and B. A is dependent on B.
Both projects are build using quarkus native build with maven.
Quarkus Version is 2.7.4
I did the code changes in B but have not changed its pom version and kept the same version in A. The changes…

Yamini
- 67
- 1
- 6