gpt4 book ai didi

cgroup限制mongodb进程内存大小

转载 作者:qq735679552 更新时间:2022-09-29 22:32:09 27 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章cgroup限制mongodb进程内存大小由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

以限制mongodb的内存大小为例.

?
1
2
3
4
mkdir /cgroup/memory/test/
echo 50M > /cgroup/memory/test/memory .limit_in_bytes
echo 50M > /cgroup/memory/test/memory .memsw.limit_in_bytes
cgexec -g memory: test mongod -port 27017 --bind_ip 127.0.0.1 --dbpath /var/lib/mongo

通过cgroup限制后,当内存达到限额,进程会被kill.

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[root@centos mongo]# cgexec -g memory:test mongod -port 27017 --bind_ip 127.0.0.1 --dbpath /var/lib/mongo
2014-07-18T23:20:53.228+0800 [initandlisten] MongoDB starting : pid=2529 port=27017 dbpath=/var/lib/mongo 64-bit host=centos
2014-07-18T23:20:53.228+0800 [initandlisten] db version v2.6.3
2014-07-18T23:20:53.228+0800 [initandlisten] git version: 255f67a66f9603c59380b2a389e386910bbb52cb
2014-07-18T23:20:53.228+0800 [initandlisten] build info: Linux build12.nj1.10gen.cc 2.6.32-431.3.1.el6.x86_64 #1 SMP Fri Jan 3 21:39:27 UTC 2014 x86_64 BOOST_LIB_VERSION=1_49
2014-07-18T23:20:53.228+0800 [initandlisten] allocator: tcmalloc
2014-07-18T23:20:53.228+0800 [initandlisten] options: { net: { bindIp: "127.0.0.1", port: 27017 }, storage: { dbPath: "/var/lib/mongo" } }
2014-07-18T23:20:53.304+0800 [initandlisten] journal dir=/var/lib/mongo/journal
2014-07-18T23:20:53.304+0800 [initandlisten] recover : no journal files present, no recovery needed
2014-07-18T23:20:53.374+0800 [initandlisten] waiting for connections on port 27017
2014-07-18T23:20:57.838+0800 [initandlisten] connection accepted from 127.0.0.1:36712 #1 (1 connection now open)
2014-07-18T23:21:15.077+0800 [initandlisten] connection accepted from 127.0.0.1:36713 #2 (2 connections now open)
2014-07-18T23:21:52.342+0800 [conn2] getmore test.my_collection cursorid:34538199491 ntoreturn:0 keyUpdates:0 numYields:39 locks(micros) r:121572 nreturned:95052 reslen:4194299 202ms
2014-07-18T23:21:53.376+0800 [clientcursormon] mem (MB) res:136 virt:12809
2014-07-18T23:21:53.376+0800 [clientcursormon] mapped (incl journal view):12508
2014-07-18T23:21:53.376+0800 [clientcursormon] connections:2
2014-07-18T23:21:56.790+0800 [conn2] getmore test.my_collection cursorid:34538199491 ntoreturn:0 keyUpdates:0 numYields:88 locks(micros) r:142113 nreturned:95595 reslen:4194301 244ms
Killed

数据查询脚本:

?
1
2
3
4
5
6
7
8
9
10
11
[root@centos data] # cat mongotestList.py
import pymongo
import time
 
client = pymongo.MongoClient( "localhost" , 27017 )
db = client.test
print db.name
print db.my_collection
 
for item in db.my_collection.find():
   print item

数据插入脚本:

?
1
2
3
4
5
6
7
8
9
10
11
[root@centos data] # cat mongotest2.py
import pymongo
import time
 
client = pymongo.MongoClient( "localhost" , 27017 )
db = client.test
print db.name
print db.my_collection
 
while True :
   db.my_collection.save({time.ctime(): time.time()})

  。

最后此篇关于cgroup限制mongodb进程内存大小的文章就讲到这里了,如果你想了解更多关于cgroup限制mongodb进程内存大小的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com