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
When running something like yarn run nyc --reporter=text --reporter=html --reporter=lcovonly --report-dir=output/coverage report on a 72-core machine, I get the following error:
The issue seems to be that the pMap calls create enough parallelism to overwhelm my V8 memory settings (which vary from 512MB to the effectively default 2GB).
Would you consider adding an option to limit parallelism or perhaps max out the CPU count to something like 4?
Notably, this is similar in spirit to the bug fixed in df34c1c. There a concurrency limit was added, but it can still be too large.
The text was updated successfully, but these errors were encountered:
When running something like
yarn run nyc --reporter=text --reporter=html --reporter=lcovonly --report-dir=output/coverage report
on a 72-core machine, I get the following error:I "resolved" this by applying the following patch locally:
The issue seems to be that the
pMap
calls create enough parallelism to overwhelm my V8 memory settings (which vary from 512MB to the effectively default 2GB).Would you consider adding an option to limit parallelism or perhaps max out the CPU count to something like 4?
Notably, this is similar in spirit to the bug fixed in df34c1c. There a concurrency limit was added, but it can still be too large.
The text was updated successfully, but these errors were encountered: