-
Notifications
You must be signed in to change notification settings - Fork 870
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optimize project for development with IDEs #9757
Comments
hi @philsttr, thanks for opening this and bringing attention back to it. we discussed in our weekly meeting, and have a couple of ideas about trying to split up the project into multiple gradle modules to allow loading only the piece that you are working on into Intellij we probably won't be able to get to this until after we release version 2.0 (which is currently targeted for Dec or Jan) for a couple reasons:
@zeitlinger also opened https://intellij-support.jetbrains.com/hc/en-us/community/posts/14704481872914-Huge-Java-project-in-IDEA in case we can get any other ideas / tips on how to make the situation more bearable |
If you are interested in working only one a subset of instrumentations you could try commenting out most of the instrumentations in |
Another alternative to the above suggestion is to |
Oh nice. I was not aware of the |
Unloading Modules in IntelliJ has been a huge help. I've submitted #9810 to add this info to the IntelliJ Setup and Troubleshooting doc. Thanks for pointing it out @tylerbenson |
Thanks for the feedback and PR @philsttr! |
Is your feature request related to a problem? Please describe.
IDEs really struggle with this project since it is so huge and has so many submodules with many dependencies.
I believe this is a known problem (#9331, #8767), but I am filing this issue to bring more attention to it, and maybe track some progress.
Please take this as constructive feedback, and not criticism, because I'm really excited for this project, and I fully understand how it has grown to become this behemoth.
This sounds harsh, but... development on this project is so painful that I am questioning whether I want to contribute more to this project (I'm considering contributions for #9740, #9400, and #9390), or if I should maintain custom in-house extensions instead. I would much prefer to contribute to this project, but after comparing my experience contributing to it (#9705) versus my experience developing some separate in-house extensions for proprietary code... I can say that my experience developing in-house extensions was much easier/faster, mainly due to how much IDEs struggle with this project. IDEs constantly index and run out of memory (even giving them 8+GB), making iterative development terribly slow. I've resorted to editing files in a basic text editor, which is not a great experience after working with IDEs for years.
Describe the solution you'd like
The ability to perform iterative development on this project using an IDE with a reasonable footprint. For example, lower memory and CPU requirements, less indexing, faster builds, etc.
Describe alternatives you've considered
Don't use an IDE. Use a basic text editor instead.
Don't contribute to this project. Instead, develop custom extensions in separate repos.
Additional context
Reduce developer power bills by not making our computers work so hard. ;) On the bright side, since I have to let my computer cool off frequently when developing on this project, it forces me to take more breaks.
The text was updated successfully, but these errors were encountered: