Tiziano Rossi
Tiziano Rossi

Reputation: 603

Optimize Node.js memory consumption

I'm writing a simple cms in Node.js, Express and MongoDB. I'm planning to run a different Node.js process for every site. The problem is that after startup the process takes about 90m of RAM and for me it's too big (eight site take all server RAM). This memory is taken after the first connection to the site and other connections don't affect the memory.

Is there a guideline or a list of "best practices" to optimize this memory usage? I'm trying to track where the memory is allocated with process.memoryUsage() or a similar function but it's not simple to do this.

Is not a problem of memory leaks or something similar because the memory usage doesn't grow up after the first connection, so probably the optimization could be in loading less modules or do something differently...

Upvotes: 19

Views: 39903

Answers (5)

sod
sod

Reputation: 3928

You can minify your sourcecode via esbuild like:

npm i -g esbuild

esbuild
  --bundle ./start.ts \
  --outfile=./dist/start.js \
  --platform=node \
  --minify

and then start your server with the outfile instead. This can cut down on memory consumption significantly, as node.js holds on to all the source code it required as strings in memory. If your script requires a bunch of files, also in node_modules, this can consume quite some RAM.

Upvotes: 1

Misael Abanto
Misael Abanto

Reputation: 364

Start your node.js app with --inspect option. After that, you can visualize and profile your application with the new Node.js Chrome Debugging.

enter image description here

Upvotes: 0

Walkman
Walkman

Reputation: 39

Set the --max_old_space_size CLI flag to control the maximum heap size. There's a post that describes Running a node.js app in a low-memory environment

tl;dr; Try setting this value, in megabytes, to about 80% of the maximum memory footprint you want node to try to remain under. e.g. to run app.js and keep it under 500MB RAM used

node --max_old_space_size=400 app.js

This setting is also described in the Node JS CLI documentation

Upvotes: 0

Dory Zidon
Dory Zidon

Reputation: 10719

Here is a quick fix, a node.js lib that will restart the any node process once it reaches a certain size. https://github.com/DoryZi/memory_limiter

Upvotes: 0

Leonel Machava
Leonel Machava

Reputation: 1531

The links below may help you to understand and detect memory leaks (if they do exist):

Debugging memory leaks in node.js

Detecting Memory Leaks in Node.js Applications

Tracking Down Memory Leaks in Node.js

These SO questions may also be useful:

How to monitor the memory usage of Node.js?

Node.js Memory Leak Hunting

Upvotes: 17

Related Questions