Skip to content

Instantly share code, notes, and snippets.

@brisbanewebdeveloper
Last active August 3, 2019 07:00
Show Gist options
  • Save brisbanewebdeveloper/3f0bac2685ddb7ee9a3fd5174503fb94 to your computer and use it in GitHub Desktop.
Save brisbanewebdeveloper/3f0bac2685ddb7ee9a3fd5174503fb94 to your computer and use it in GitHub Desktop.
How to limit MongoDB memory usage

If you are running MongoDB 3.2 or later version, you can limit the wiredTiger cache.

In /etc/mongod.conf add the wiredTiger part:

storage:
  dbPath: /var/lib/mongodb
  journal:
    enabled: true
  wiredTiger:
    engineConfig:
        cacheSizeGB: 1

That will limit the cache size to 1GB, more info in Doc

After changing the config, restart the mongo daemon.

Source

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment