Why is Intellij so slow with Quarkus repository ? #22048
-
I'm using Intellij to develop on the main quarkus repository and it just seems to be slower and slower when using Intellij - whats up with that? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Going to answer myself here :) Quarkus is a big a project with 1000+ modules so it will take some time; we recommend you import only the modules you really need in any IDE you use. Lately though Intellij got really slow when doing updates to a pom.xml dependencies which often happens when switching branches. There are some performance fixes in latest 2021.3 release so if you are seeing issues make sure you upgrade. We'll keep in touch with jetbrains team to figure out if we can improve the situation on intellij side. On our own side we are having active conversations on restructuring the main repo and moving non-essential or easily decoupled extensions out of the repository. That is and will be an ongoing process. |
Beta Was this translation helpful? Give feedback.
Going to answer myself here :)
Quarkus is a big a project with 1000+ modules so it will take some time; we recommend you import only the modules you really need in any IDE you use.
Lately though Intellij got really slow when doing updates to a pom.xml dependencies which often happens when switching branches.
For that we contacted Intellij and they thus far identified Quarkus gets affected in particular by this known issue: https://youtrack.jetbrains.com/issue/IDEA-276394
There are some performance fixes in latest 2021.3 release so if you are seeing issues make sure you upgrade.
We'll keep in touch with jetbrains team to figure out if we can improve the situation on intellij side.
On our o…