最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

cgroup限制mongodb進(jìn)程內(nèi)存大小

 更新時(shí)間:2014年07月20日 16:54:03   投稿:hebedich  
這篇文章主要介紹了cgroup限制mongodb進(jìn)程內(nèi)存大小,需要的朋友可以參考下

以限制mongodb的內(nèi)存大小為例。

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限制后,當(dāng)內(nèi)存達(dá)到限額,進(jìn)程會(huì)被kill。

[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

數(shù)據(jù)查詢腳本:

[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

數(shù)據(jù)插入腳本:

[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()})

相關(guān)文章

  • MongoDB加入到Windows服務(wù)的方法

    MongoDB加入到Windows服務(wù)的方法

    這篇文章主要介紹了Windows中把MongoDB加入到本地服務(wù)的方法,即把MongoDB加入到Windows服務(wù)中隨機(jī)啟動(dòng),需要的朋友可以參考下
    2014-10-10
  • MongoDB基礎(chǔ)之文檔操作

    MongoDB基礎(chǔ)之文檔操作

    這篇文章介紹了MongoDB基礎(chǔ)之文檔操作,文中通過示例代碼介紹的非常詳細(xì)。對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2022-06-06
  • mongoDB使用投影剔除‘額外’字段的操作過程

    mongoDB使用投影剔除‘額外’字段的操作過程

    這篇文章主要給大家介紹了關(guān)于mongoDB使用投影剔除‘額外’字段的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2021-01-01
  • 淺析MongoDB之安全認(rèn)證

    淺析MongoDB之安全認(rèn)證

    MongoDB是基于分布式文件存儲(chǔ)的數(shù)據(jù)庫(kù)。由C++語(yǔ)言編寫。旨在為WEB應(yīng)用提供可擴(kuò)展的高性能數(shù)據(jù)存儲(chǔ)解決方案。默認(rèn)情況下,MongoDB實(shí)例啟動(dòng)運(yùn)行時(shí)是沒有啟用用戶訪問權(quán)限控制的,在實(shí)例本機(jī)服務(wù)器上都可以隨意連接到實(shí)例進(jìn)行各種操作,MongoDB不會(huì)對(duì)連接客戶端進(jìn)行用戶驗(yàn)證
    2021-06-06
  • mongodb設(shè)置后臺(tái)運(yùn)行的方法

    mongodb設(shè)置后臺(tái)運(yùn)行的方法

    這篇文章主要介紹了mongodb設(shè)置后臺(tái)運(yùn)行的方法,本文同時(shí)給出了關(guān)閉已在后臺(tái)運(yùn)行mongodb的方法,需要的朋友可以參考下
    2014-09-09
  • mongodb 命令行下及php中insert數(shù)據(jù)詳解

    mongodb 命令行下及php中insert數(shù)據(jù)詳解

    這篇文章主要介紹了mongodb 命令行下及php中insert數(shù)據(jù)詳解,需要的朋友可以參考下
    2014-07-07
  • MongoDB的安裝方法圖文教程

    MongoDB的安裝方法圖文教程

    MongoDB 是由C++語(yǔ)言編寫的,是一個(gè)基于分布式文件存儲(chǔ)的開源數(shù)據(jù)庫(kù)系統(tǒng)。本文給大家介紹了mongodb的安裝教程,非常不錯(cuò),具有參考借鑒價(jià)值,感興趣的朋友一起看看吧
    2016-11-11
  • db.serverStatus()命名執(zhí)行時(shí)報(bào)無(wú)權(quán)限問題的解決方法

    db.serverStatus()命名執(zhí)行時(shí)報(bào)無(wú)權(quán)限問題的解決方法

    這篇文章主要給大家介紹了關(guān)于db.serverStatus()命名執(zhí)行時(shí)報(bào)無(wú)權(quán)限問題的解決方法,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2018-07-07
  • MongoDB的分片集群基本配置教程

    MongoDB的分片集群基本配置教程

    MongoDB擁有經(jīng)典的Sharding架構(gòu)能將數(shù)據(jù)分散存儲(chǔ)在數(shù)個(gè)服務(wù)器上以作集群,這里我們就來(lái)看一下MongoDB的分片集群基本配置教程:
    2016-07-07
  • Windows 10下安裝最新版MongoDB的完整步驟

    Windows 10下安裝最新版MongoDB的完整步驟

    這篇文章主要給大家介紹了關(guān)于在Windows 10下安裝最新版MongoDB的完整步驟,文中通過圖文介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2018-10-10

最新評(píng)論

湘潭市| 凤庆县| 江门市| 高雄县| 治县。| 资源县| 景宁| 大连市| 长泰县| 温宿县| 轮台县| 彝良县| 河源市| 云霄县| 法库县| 镇沅| 眉山市| 潜江市| 徐州市| 凉山| 嘉义市| 凤山县| 铜山县| 富源县| 保靖县| 广德县| 桓仁| 龙里县| 农安县| 汉寿县| 泾源县| 永州市| 温宿县| 顺平县| 江城| 南汇区| 蕲春县| 德江县| 刚察县| 漳浦县| 无为县|