memory vs performance
memory vs performance
Posted Apr 5, 2012 8:34 UTC (Thu) by dlang (guest, #313)Parent article: 2012 Linux Storage, Filesystem, and Memory Management Summit - Day 1
I recently upgraded the memory on a machine based on my judgement that it would help (and it did, a nightly processing run went from 10+ hours to <2 hours), but this system had no paging taking place, the only performance stats that changed were disk utilization (and I/O wait) and the fact that the CPU utilization shot up.
I've run into this same sort of situation multiple times where the real underlying cause is that the disk cache no longer holds the working set and so disk I/O skyrockets and performance crashes. This is sometimes complicated that 'working set' may require looking at a very long timeframe. In my most recent situation it was analysing log files for the day, so data untouched for the last 24 hours was still part of the overall 'working set'
This is a very hard problem
