Introducing Dragonfly Cloud! Learn More

Question: How do you check the cache size in MongoDB?

Answer

In MongoDB, monitoring and managing the cache size is crucial for optimizing database performance, especially in WiredTiger, MongoDB's default storage engine. WiredTiger uses an internal cache to store frequently accessed data in memory, reducing disk I/O and improving read/write performance.

Checking Cache Size

To check the current cache size and its usage in MongoDB, you can use the serverStatus command. This command provides a wealth of information about the database server's status, including details about the WiredTiger storage engine's cache.

db.serverStatus().wiredTiger.cache

This command will return various statistics about the cache, including:

  • bytes currently in the cache: The total size of all data currently held in the cache.
  • maximum bytes configured: The maximum cache size configured. By default, WiredTiger will use up to 50% of RAM minus 1 GB, but it can be configured via the storage.wiredTiger.engineConfig.cacheSizeGB setting in the MongoDB configuration file or startup options.
  • pages read into cache: The number of pages read into the cache from disk. This can give you an idea of how often MongoDB has to read from disk because the needed data was not in the cache.
  • pages written from cache: The number of pages written from the cache to disk. This indicates the volume of write operations that were served from the cache.

Configuring Cache Size

If you find that your cache size is too small or too large for your workload, you can adjust it by editing the mongod.conf file or passing parameters at startup. Here's how you can set the cache size to 2GB using the configuration file:

storage: wiredTiger: engineConfig: cacheSizeGB: 2

Or by using the command line option when starting mongod:

mongod --wiredTigerCacheSizeGB 2

Monitoring and Optimization

Regularly monitoring your MongoDB cache size and usage helps in identifying potential performance bottlenecks. If your application experiences high latency or increased disk I/O, checking the cache metrics can be a good starting point for optimization.

Adjusting the cache size can have a significant impact on performance, but it should be done carefully, considering the overall system resources and other applications running on the same server.

Was this content helpful?

White Paper

Free System Design on AWS E-Book

Download this early release of O'Reilly's latest cloud infrastructure e-book: System Design on AWS.

Free System Design on AWS E-Book

Start building today 

Dragonfly is fully compatible with the Redis ecosystem and requires no code changes to implement.