-
Notifications
You must be signed in to change notification settings - Fork 442
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
warmup mode #2724
Comments
Seems to be related to #2723 - created 18 hours ago, right? |
IntelliJ has both shared indexes and warm up [1], i.e. warm up itself can be speeded up with shared indexes. |
I have tested the https://github.com/snjeza/spring-boot/tree/gitpod-vscode project.
or If gitpod stops Java LS properly it will start quickly. Case 1:
Java LS doesn't rebuild the project and starts in several seconds. Case 2:
Case 3:
|
@snjeza it is a bit another use case, Gitpod allow to configure prebuild of projects ahead of time: https://www.gitpod.io/docs/configure/projects/prebuilds It runs a headless workspace without VS Code to download dependencies, index and so on. We would like to run Java LS as part of it that when a user starts a new real workspace it looks like a restarted workspace in your example. |
@akosyakov could you provide an example?
but VS Code starts before |
It is originally raise in Gitpod: gitpod-io/gitpod#12448
For very big projects it takes a while to import and reindex the project on the startup of container. Gitpod has a concept of prebuild, i.e. CI for dev containers. We would like to warm up Java LS or VS Code extension that on real container start it is loaded immediately.
The text was updated successfully, but these errors were encountered: