You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by geissondaSilva December 5, 2023
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.
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?
The text was updated successfully, but these errors were encountered:
Discussed in #37552
Originally posted by geissondaSilva December 5, 2023
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?
The text was updated successfully, but these errors were encountered: