Delay in building the project in dev mode #37552
geissondaSilva
started this conversation in
Community
Replies: 3 comments 15 replies
-
any chance you can try newer quarkus version? quarkus 3.4+ would potentially not have this calculation. |
Beta Was this translation helpful? Give feedback.
15 replies
-
/cc @mkouba |
Beta Was this translation helpful? Give feedback.
0 replies
-
This topic is also discussed on zulip: https://quarkusio.zulipchat.com/#narrow/stream/187030-users/topic/How.20to.20disable.20devui.20in.20dev.20mode.3F |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am migrating a legacy project that used thorntail as a framework.
We recently decided to migrate to quarkus to have better performance in production and development.
After the project configuration stage using only dependencies compatible with quarkus, we identified a construction time greater than that of thorntail. When analyzing the problem and performing profiling in the construction phase, we identified that a build stage was analyzing the project's beans to assemble the data for the quarkus devui page.
Class: io.quarkus.arc.deployment.devconsole.ArcDevConsoleProcessor.java
Quarkus version: 2.16.9-Final
The addNodesDependencies function of the ArcDevConsoleProcessor class was the one that spent the longest time running when starting the application (around 70% of the time consuming CPU)
We understand that the best way would be to break this project into several others. However, due to the urgency, we need to keep everything in one project only due to the high refactoring time.
My question is how can I disable this functionality to save build time in development mode in my project?
Beta Was this translation helpful? Give feedback.
All reactions