Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Raise Chrome JS heap limit?

I have a JavaScript application that uses way too much memory. It doesn't crash out the tab, but it can take minutes to load, most of which is spent in GC. I'm using the heap profiler to see what functions are allocating the most memory, which works great.

Is there some way to get Chrome to allow a larger JS heap per process, so that I can turn around test runs on reducing memory pressure without waiting minutes for GC? A command-line argument I couldn't find, perhaps?

like image 984
Ben Dilts Avatar asked Apr 26 '17 19:04

Ben Dilts


1 Answers

Yes the jsHeapSizeLimit reported in the console:

 > console.memory
  MemoryInfo {totalJSHeapSize: 42100000, usedJSHeapSize: 29400000, jsHeapSizeLimit: 1620000000}

is calculated from two limits:

  size_t MaxReserved() {
    return 2 * max_semi_space_size_ + max_old_generation_size_;
  }

chromium source

You may set these maximums (in MB) with v8 flags:

chromium --js-flags="--max_old_space_size=512 --max_semi_space_size=512"

(or you can find the similarly named initial allocation flags with --js-flags=--help if you prefer.)

A short write up of how the gc manages the heap spaces is here.

like image 106
lossleader Avatar answered Oct 28 '22 23:10

lossleader