I am using Chrome on CentOS 7 and when the process in a tab reaches 16GB (as observed with 'top') the tab crashes and the terminal writes
#
# Fatal error in heap setup
# Allocation failed - process out of memory
#
This question is very similar to
this older thread about the 4GB limit, however the 32bit ints cannot be the limit any more since the crash happens at 16GB. I am running a huge 3D visualization on a video wall and the amount of data visualized needs to go above 16GB (our machine has 128GB of RAM).
I tried running chrome/V8 with the flags:
google-chrome --js-flags="--max_old_space_size=32768"
but that hasn't prevented this error from happening.
The same webpage opened with Firefox is able to go above 16GB (I've tested it up to 40GB), so I imagine it's not a system (CentOS 7) problem, but chrome.
Are there any other flags I should try out? Thanks.