美文网首页
MongoDB 3.x内存限制配置

MongoDB 3.x内存限制配置

作者: Lisong | 来源:发表于2019-05-13 14:23 被阅读0次

修改后的配置:/etc/mongod.conf

# Where and how to store data.
storage:
  dbPath: /var/lib/mongo
  #dbPath: /mongodata 
  journal:
    enabled: true
#  engine:
  mmapv1:
    smallFiles: true
  wiredTiger:
    engineConfig:
      configString : cache_size=512M

其实重点就是下面一项,配置之后,重启mongodb生效:

wiredTiger:
    engineConfig:
      configString : cache_size=512M

相关文章

网友评论

      本文标题:MongoDB 3.x内存限制配置

      本文链接:https://www.haomeiwen.com/subject/zvilaqtx.html