jenkinsci / jenkinsci/junit-plugin
[JENKINS-1769] Use StAX to parse JUnit results
- Dominant language
- Java
- Stars
- 87
- Forks
- 351
- Avg merge
- 1d 19h
- Merged PRs (30d)
- 2
Description
When processing very large junit test results (100s MB) I get OutOfMemoryErrors
on the server, even with -Xmx1200MB. If I understand the code correctly, the
complete result is loaded into a single object on the slave, which is then
serialized and send to the server. Can this be optimized so that is not
necessary to have everything in memory simultaneously ?
---
Originally reported by huybrechts, imported from: Use StAX to parse JUnit results
Raw content of original issue
When processing very large junit test results (100s MB) I get OutOfMemoryErrors
on the server, even with -Xmx1200MB. If I understand the code correctly, the
complete result is loaded into a single object on the slave, which is then
serialized and send to the server. Can this be optimized so that is not
necessary to have everything in memory simultaneously ?
- environment:
Platform: All, OS: All
Contributor guide
Assessment
This issue has not been assessed yet.