Skip to content
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

StackTraceRequest is very slow after version 4.0.2 #780

Open
crt-31 opened this issue Oct 14, 2024 · 2 comments
Open

StackTraceRequest is very slow after version 4.0.2 #780

crt-31 opened this issue Oct 14, 2024 · 2 comments

Comments

@crt-31
Copy link
Contributor

crt-31 commented Oct 14, 2024

Processing StackTraceRequest has become orders of magnitude slower since version 4.0.2, almost to a point where debugging is unusable. We are using Metals/Bloop, and everytime we debug break, the StackTraceRequest is sent and can take 5 to 10 seconds to process.

The regression seems to be caused by the new feature to add presentation hint for each method in the callstack.

The culprit seems to be in JdiExtensions.isLazyGetter which calls jdi.Method.argumentTypes(). jdi.Method.argumentTypes() seems to be an expensive function as it queries the host for all the fields. Doing this on every method in callstack is slowing things down.

def isLazyGetter: Boolean =
method.argumentTypes.asScala.toSeq match {
case Seq(argType) => lazyTypes.contains(argType.name)
case _ => false
}

I don't have any great solutions to fix this, other than finding a way to not have to call isLazyGetter all the time, or maybe a config option to turn off presentationHint? Just ideas.

@adpi2
Copy link
Member

adpi2 commented Oct 15, 2024

Thanks for the report!

I will need more information to address this issue:

  • Does it happen on Scala 2.12, 2.13 or 3? Have you tried other Scala versions?
  • What JVM do you use? Does it happen on other JVMs?
  • Have you tried the latest version of the Scala Debug Adapter?
  • Why do you think isLazyGetter is the culprit?

@crt-31
Copy link
Contributor Author

crt-31 commented Oct 16, 2024

  • Issue happens on scala 2.13.14 and 2.13.10... Haven't tried any other versions
  • Using Correto 17.0.11 & Hotspot 17.0.6.10
  • Confirmed issue happens on latest main of Scala Debug Adapter
  • Used Flight Recorder to narrow down to the isLazyGetter function. The slowness went away when I commented that line out.

Investigating the code further, it made sense since method.argumentTypes() sends request to the host and waits for response... also the problem appears to be exasperated by presense of anonymous functions such as for comprehensions and lambdas.

Note, we are running a large application, I don't notice it in small applications.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants