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 have a fairly large project with lots of tests and on my computer only, running sbt "jacoco:test-only --" and Keys.fork in jacoco.Config := true, the task consistently dies at the same place, throwing java.lang.OutOfMemoryError: unable to create new native thread.
After much research, it looks like it may be due to the way the process allocates threads. Mac OSX seems to have a limit of 2048 taskthreads and cannot be changed, and this seems to be the limit that is being hit, but not completely sure.
The text was updated successfully, but these errors were encountered:
I have a fairly large project with lots of tests and on my computer only, running
sbt "jacoco:test-only --"
andKeys.fork in jacoco.Config := true
, the task consistently dies at the same place, throwingjava.lang.OutOfMemoryError: unable to create new native thread
.After much research, it looks like it may be due to the way the process allocates threads. Mac OSX seems to have a limit of 2048 taskthreads and cannot be changed, and this seems to be the limit that is being hit, but not completely sure.
The text was updated successfully, but these errors were encountered: