Limiting node.js's memory usage

╄→尐↘猪︶ㄣ 提交于 2019-12-21 04:06:45

问题


I am trying to limit a node.js application from using to much memory and I've found out about the --max-stack-size & --max_executable_size options that are available within V8 to pass when invoking the file, but how should I combine these and possible other arguments to limit max memory usage to 1GB?


回答1:


https://github.com/joyent/node/wiki/FAQ

What is the memory limit on a node process?

Currently, by default v8 has a memory limit of 512mb on 32-bit systems, and 1gb on 64-bit systems. The limit can be raised by setting --max_old_space_size to a maximum of ~1gb (32-bit) and ~1.7gb (64-bit), but it is recommended that you split your single process into several workers if you are hitting memory limits.

Value is in megabytes, I believe.




回答2:


It's now, --max-old-space-size no technology limits...

for example node --max-old-space-size=8192 ./app. We create limit in 8Gb



来源:https://stackoverflow.com/questions/12779724/limiting-node-jss-memory-usage

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!