You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I observe high metaspace usage because of the large amount of isolated classloaders in a large multi-module project.
For example, in the Ktor projectapiDump task uses up to 4GB of metaspace memory.
I observe high metaspace usage because of the large amount of isolated classloaders in a large multi-module project.
For example, in the Ktor project
apiDump
task uses up to 4GB of metaspace memory.It could lead to:
-XX:MaxMetaspaceSize
is not specified for a project (Settingorg.gradle.jvmargs
property can lead to "Daemon disappeared" failures gradle/gradle#19750)OutOfMemory: Metaspace
if the specified-XX:MaxMetaspaceSize
is not bug enough to hold all classes loaded by BCVIs it possible to reduce the number of classloaders or decrease metaspace size in another way?
Relates to:
The text was updated successfully, but these errors were encountered: