Home > Database > Mysql Tutorial > body text

Linux 下 限制 MongoDB 内存占用

WBOY
Release: 2016-06-07 17:21:58
Original
1517 people have browsed it

可以通过绑定cpu,来防止多实例相互干扰。mongodb的内存也可以限制主,防止全部内存都被一个实例占据。

多实例下:

可以通过绑定cpu,来防止多实例相互干扰。

mongodb的内存也可以限制主,,防止全部内存都被一个实例占据。

ulimit -s 4096 && ulimit -m 31457280 && sudo -u mongodb numactl --cpunodebind=0 --localalloc /opt/soft/mongodb-2.2.0/bin/mongod --fork --master --oplogSize 10240 --port 27001 --dbpath /data/mongodb/db27001/ --logpath /data/logs/mongodb/mongodb27001.log -logappend --nohttpinterface --directoryperdb 

ulimit -s 设定 stack 大小。

ulimit -m 设定进程使用内存大小。

numactl --cpunodebind=0 将进程绑定到第一颗cpu上。

这样cpu 内存全都不干扰。

linux

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template