Reputation: 61950
Can repetitive sequential stat
ing on each file cause the buffer cache or the slab objects to evict old entries and/or grow the slab causing noticeable performance difference, except the disk I/O? For example the buffer cache or the slab for Linux is in a state where they have the objects loaded which are mostly active. 'stat' ing files on the disk (say all of them) will bring the inode and dentry objects on the cache. Because they are large in number I think they may evict the older entries and fill the cache up. Once this is done, the old entries which were evicted, will have to be reloaded from disk when the corresponding application accesses it.
My question is does this kind of stat
ing for example repetitive du
usage on a huge number of files make a noticeable effect on the system? That depends on the size of the cache, I understand, my main objective is to understand if repetitive 'du' on a huge number of files will effect the performance of the system noticeably. Also indicate if any other indirect effects can be seen.
Upvotes: 3
Views: 95
Reputation: 4209
IMHO, that depends on cache replacement policy. If it's FIFO, then yes - du
ing will replace older entries with newer. But if it's LRU, which is much more common, then, i think, it's unlikely to happen - I (want to) believe that I/O on files have higher priority for LRU time/reference counting then stat
ing. Or maybe that caches are completely separate. Anyway, some thoughtful kernel source code reading are strongly recommended.
Upvotes: 1