Node.js can be used with Jemalloc (https://github.com/nodejs/node/issues/21973). In most cases it would shorten RSS and this is my huge problem.
But I can't find any info about how to use node with Jemalloc, nor on a machine, nor in docker.
Can anybody help with this?
I just went through the process of switching our nodejs app to jemalloc, here is how I did it on Debian stretch:
Install jemalloc:
Find the jemalloc binary:
Look for a file in a folder like /usr/lib/... ending with .so, for example path could be /usr/lib/x86_64-linux-gnu/libjemalloc.so
Configure server to use jemalloc for all programs:
sudo nano /etc/ld.so.preload
/path/to/jemalloc/binary
cat /proc/<PID OF NODEJS>/smaps | grep jemalloc
Alternative: Use jemalloc only for nodejs
In bash execute
export LD_PRELOAD=$LD_PRELOAD:/path/to/jemalloc/binary
before starting the nodejs process