目前我正在尝试使用 10 个用户并行运行我们的功能测试(大约 300 个请求)gatling-plugin
mvn clean test-compile gatling:test -Dkarate.env=test
在项目文件夹中使用以下.mvn/jvm.config
本地 Maven 选项:
-d64 -Xmx4g -Xms1g -XshowSettings:vm -Djava.awt.headless=true
在某些时候,在并行处理一些大响应时,加特林进程被中止:
[ERROR] Failed to execute goal io.gatling:gatling-maven-plugin:3.0.2:test (default-cli) on project np.rest-testing: Gatling failed.: Process exited with an error: -1 (Exit value: -1) -> [Help 1]
使用以下堆栈跟踪:
java.lang.OutOfMemoryError: Java heap space
Dumping heap to java_pid25960.hprof ...
Heap dump file created [1611661680 bytes in 18.184 secs]
Uncaught error from thread [GatlingSystem-scheduler-1]: Java heap space, shutting down JVM since 'akka.jvm-exit-on-fatal-error' is enabled for ActorSystem[GatlingSystem]
java.lang.OutOfMemoryError: Java heap space
at akka.actor.LightArrayRevolverScheduler$$anon$3.nextTick(LightArrayRevolverScheduler.scala:269)
at akka.actor.LightArrayRevolverScheduler$$anon$3.run(LightArrayRevolverScheduler.scala:235)
at java.lang.Thread.run(Thread.java:748)
我尝试以不同的方式将堆空间增加到 10 GB ( -Xmx10g
):
- 通过环境属性
MAVEN_OPTS=-Xmx10g
- 通过本地项目 Maven 选项
.mvn/jvm.config
- 通过这里
maven-surefire-plugin
建议的配置
尽管如您在 maven 进程开始时看到的那样,为 maven 进程分配了 10GB:
VM settings:
Min. Heap Size: 1.00G
Max. Heap Size: 10.00G
Ergonomics Machine Class: client
Using VM: Java HotSpot(TM) 64-Bit Server VM
但在每次执行OutOfMemoryError
期间仍然抛出。gatling-plugin
分析每个堆转储时eclipse memory analyzer
总是显示相同的结果:
84 instances of "com.intuit.karate.core.StepResult", loaded by "sun.misc.Launcher$AppClassLoader @ 0xc0000000" occupy 954 286 864 (90,44 %) bytes.
Biggest instances:
•com.intuit.karate.core.StepResult @ 0xfb93ced8 - 87 239 976 (8,27 %) bytes...
可以做些什么来减少堆空间使用和防止OutOfMemoryError
?有人可以分享一些想法和经验吗?