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
Platform: Linux sirius-Alienware-15-R3 4.13.0-41-generic Tracking / Assuring Compatibility #46~16.04.1-Ubuntu SMP Thu May 3 10:06:43 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
The code below will cause external memory leak of v8 engine. In v8, mark-compact updates the external_memory before the gc, which cause the external_memory_limit too big. Normally, It's fine, we just got a bigger limit. But when scavenge happened before next mc, updated the external_memory, the external_memory_limit will keep increasing.
The code below will cause external memory leak of v8 engine. In v8, mark-compact updates the
external_memorybefore the gc, which cause theexternal_memory_limittoo big. Normally, It's fine, we just got a bigger limit. But when scavenge happened before next mc, updated theexternal_memory, theexternal_memory_limitwill keep increasing.I thought this issue has already been fixed in these commits, and node v9.x already ported them:
https://codereview.chromium.org/2917853004
https://codereview.chromium.org/2921883002
Run the script with
--trace-gcto dump gc info.Attached a graph of the memory usage
