Home >Database >Mysql Tutorial >Linux 下 限制 MongoDB 内存占用

Linux 下 限制 MongoDB 内存占用

WBOY
WBOYOriginal
2016-06-07 17:21:581542browse

可以通过绑定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

Statement:
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
Previous article:分布式数据库:dblinkNext article:ORA-02030解决办法