gpt4 book ai didi

sonarqube - Sonar findbugs 堆大小

转载 作者:行者123 更新时间:2023-12-04 15:14:23 26 4
gpt4 key购买 nike

我是 Sonar 的新手。我正在使用 Sonar 插件从 Jenkins 运行 Sonar 。

当我从 jenkins 运行时,我在 findbugs 中出现内存不足异常

下面是错误:

 Out of memory
Total memory: 1037M
free memory: 30M
Analyzed: D:\Victor\autocreated\webapp\WEB-INF\classes
Aux: C:\DOCUME~1\NADBHA~1\LOCALS~1\Temp\findbugs4165854405681394173.jar
Aux: C:\DOCUME~1\NADBHA~1\LOCALS~1\Temp\findbugs4688505485649811865.jar
Total time: 2:04:49.155s
Final Memory: 358M/989M
Exception in thread "main" org.sonar.batch.bootstrapper.BootstrapException: org.sonar.api.utils.SonarException: Can not execute Findbugs
at org.sonar.runner.Runner.delegateExecution(Runner.java:189)
at org.sonar.runner.Runner.execute(Runner.java:78)
at org.sonar.runner.Main.main(Main.java:61)
Caused by: org.sonar.api.utils.SonarException: Can not execute Findbugs
at org.sonar.plugins.findbugs.FindbugsExecutor.execute(FindbugsExecutor.java:120)
at org.sonar.plugins.findbugs.FindbugsSensor.analyse(FindbugsSensor.java:58)
at org.sonar.batch.phases.SensorsExecutor.execute(SensorsExecutor.java:64)
at org.sonar.batch.phases.Phases.execute(Phases.java:93)
at org.sonar.batch.bootstrap.ProjectModule.doStart(ProjectModule.java:143)
at org.sonar.batch.bootstrap.Module.start(Module.java:83)
at org.sonar.batch.bootstrap.BatchModule.analyze(BatchModule.java:111)
at org.sonar.batch.bootstrap.BatchModule.doStart(BatchModule.java:101)
at org.sonar.batch.bootstrap.Module.start(Module.java:83)
at org.sonar.batch.bootstrap.BootstrapModule.doStart(BootstrapModule.java:102)
at org.sonar.batch.bootstrap.Module.start(Module.java:83)
at org.sonar.batch.Batch.execute(Batch.java:100)
at org.sonar.runner.Launcher.executeBatch(Launcher.java:65)
at org.sonar.runner.Launcher.execute(Launcher.java:58)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.sonar.runner.Runner.delegateExecution(Runner.java:186)
... 2 more
Caused by: java.util.concurrent.ExecutionException: java.lang.OutOfMemoryError: Java heap space
at java.util.concurrent.FutureTask$Sync.innerGet(Unknown Source)
at java.util.concurrent.FutureTask.get(Unknown Source)
at org.sonar.plugins.findbugs.FindbugsExecutor.execute(FindbugsExecutor.java:112)
... 20 more
Caused by: java.lang.OutOfMemoryError: Java heap space

我的 Sonar 版本是 2.13

当我将 Jenkins sonar 插件中的 jvm 选项增加到 1280 时,它显示如下错误:
Error occurred during initialization of VM
Could not reserve enough space for object heap
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit`enter code here`

最佳答案

是的,如果分析的代码库很大, Sonar findbugs 执行程序可以使用大量 RAM。

您不仅要增加 JVM 可用的堆大小,还要增加“MaxPermSize”和“ReservedCodeCacheSize”(至少对于 Java Hotspot VM)。必须在实际执行 FindBugs Sonar 执行器的 JVM 上设置 JVM 选项。所以可能不是 Jenkins VM,而是 Jenkins 开始工作的那个。

以下是 64 位系统的示例:

-Xmx3062m -XX:MaxPermSize=512m -XX:ReservedCodeCacheSize=128m

在我假设您正在使用的 32 位系统上,您会选择较低的值,例如:
-Xmx1536m -XX:MaxPermSize=384m -XX:ReservedCodeCacheSize=128m

此外,如果 Jenkins 不接受 JVM 选项,您可以尝试使用 Jenkins 的 Sonar Ant 任务运行 Sonar 。 (这就是我正在做的,我可以设置尽可能多的内存。)

关于sonarqube - Sonar findbugs 堆大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10104443/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com