Page cache flushing behavior under heavy append load
Posted
by
Bryce
on Super User
See other posts from Super User
or by Bryce
Published on 2014-06-09T00:59:40Z
Indexed on
2014/06/09
3:30 UTC
Read the original article
Hit count: 493
linux
|Performance
I'm trying to understand the behavior of the Linux pdflush daemon when:
- The page cache is initially pretty much empty
- There is a large amount of free memory
- The system starts undergoing heavy write load
My understanding right now is that the vm.dirty_ratio and vm.dirty_background_ratio that control page cache flushing behavior are with respect to the present size of the page cache, which means that my writes will flush earlier than they would if the page cache was pre-populated (even with dummy data from some random file), and thus throughput will be lower. Is this accurate?
© Super User or respective owner