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
We're using wrangler to run HTTP Router, and we hit into allocation failed: JavaScript heap out of memory error when we're running end-to-end tests against it.
The error looks like this:
✘ ERROR <--- Last few GCs --->
[3455:0x106cffaa8000] 1294500 ms: Mark-Compact 1402.0 (1415.2) -> 1393.4 (1414.9) MB, pooled: 4 MB, 235.44 / 0.00 ms (average mu = 0.908, current mu = 0.625) allocation failure; scavenge might not succeed
[3455:0x106cffaa8000] 1297045 ms: Mark-Compact 1403.8 (1416.6) -> 1396.1 (1417.5) MB, pooled: 2 MB, 235.76 / 0.00 ms (average mu = 0.908, current mu = 0.907) allocation failure; scavenge might not succeed
<--- JS stacktrace --->
workerd/jsg/setup.c++:38: fatal: V8 fatal error; location = Reached heap limit; message = : allocation failed: JavaScript heap out of memory
So far we couldn't reproduce it locally, and when I tried to run memory profile on it locally, it only consumed about 2M, and as highest I can observe is about 10M, which was far from we see from the end-to-end tests: https://gitlab.com/gitlab-org/gitlab/-/issues/499983#note_2210491776
I wonder if you might have some tips for debugging this?
Let me know if you need any information that I could provide.
The text was updated successfully, but these errors were encountered:
Try running your Worker with the --remote flag which will run your Worker on Cloudflare. We enforce memory limits in production, but don't have the equivalent limiting behavior in local development. Replying on ticket for more context specific to Gitlab
We're using
wrangler
to run HTTP Router, and we hit intoallocation failed: JavaScript heap out of memory
error when we're running end-to-end tests against it.The error looks like this:
A full log can be downloaded at (will expire in 6 days) https://gitlab.com/gitlab-org/gitlab/-/jobs/8365282139/artifacts/external_file/gdk.gitlab-http-router.log
More investigation context can be found at: https://gitlab.com/gitlab-org/gitlab/-/issues/499983
So far we couldn't reproduce it locally, and when I tried to run memory profile on it locally, it only consumed about 2M, and as highest I can observe is about 10M, which was far from we see from the end-to-end tests: https://gitlab.com/gitlab-org/gitlab/-/issues/499983#note_2210491776
I wonder if you might have some tips for debugging this?
Let me know if you need any information that I could provide.
The text was updated successfully, but these errors were encountered: