-
Notifications
You must be signed in to change notification settings - Fork 38.4k
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
Startup performance regression due to CGLIB class load attempts in Spring 6.1.x #34677
Comments
That regression is in all of Spring 6.x actually, introduced right in 6.0. These CGLIB class load attempts aim to find AOT-generated proxy classes, and we currently unconditionally look for them (expecting it to be a cheap enough operation). In practice, we only need to look for them in AOT-processed application, so we might attach this behavior to that runtime mode only. Note that we might only be fixing this in Spring 6.2.6. The Spring 6.1.x line is approaching the end of its OSS support in late June, and any behavior that could cause regressions for other people is better off in 6.2.x only. |
This turned out to be somewhat inconsistent between AOP proxies and configuration classes, so I'm using the opportunity to fully align this for 6.2.6, backporting it to 6.1.19 since it might also fix inconsistency issues in custom ClassLoader scenarios: We consistently perform a CGLIB class load attempt in case of |
@rahulsh1 this internal revision is available in the latest 6.2.6 and 6.1.19 snapshots now, avoiding those |
@rahulsh1 out of curiosity, in which kind of deployment arrangement have you noticed such a dramatic performance regression through class-load attempts? Is there some special ClassLoader setup involved, or is this simply through the size of your deployment? |
A considerable startup regression over 30+ seconds was found in the Spring refresh phase after the migration to Spring
6.1.16
from Spring 5.3.x with no other changes.For every Configuration/Proxy bean discovered by Spring 6.x, three classpath lookups are triggered. Since these classes are not on the classpath, it causes a full classpath scan, ultimately resulting in a lookup failure (causing the delay).
One such example for the lookup for an application bean:
com.app.FooConfigBean$$SpringCGLIB$$0
com.app.FooConfigBean$$SpringCGLIB$$FastClass$$0
com.app.FooConfigBean$$SpringCGLIB$$FastClass$$1
Stack Trace for
com.app.FooConfigBean$$SpringCGLIB$$0
lookup:Stack Trace for
com.app.FooConfigBean$$SpringCGLIB$$FastClass$$0
lookupGiven this behavior has changed with Spring 6.x, is there a way to bypass these class lookups that will never be found on the current classpath?
This situation is reminiscent of the BeanInfo/Customizer lookups, which also caused a similar regression that could be disabled.
The text was updated successfully, but these errors were encountered: