By now, you should have a fair idea of the importance of disk I/O and how it directly impacts your database performance. MongoDB provides a nifty little utility called mongoperf that allows us to quickly measure disk I/O performance.
Measuring disk I/O performance with mongoperf
Getting ready
For this recipe, we only need the mongoperf utility, which is available in the bin directory of your MongoDB installation.
How to do it...
- Measure the read throughput with mmf disabled:
root@ubuntu:~# echo "{ recSizeKB: 8, nThreads: 12, fileSizeMB: 10000, r: true, mmf: false...