Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to do it for more predictable benchmarking.

share|improve this question
sync isn't doing it? – imm Mar 4 '12 at 2:36

3 Answers

up vote 6 down vote accepted

Sounds like you want the sync command, or the sync() function.

If you want disk cache flushing: echo 3 | sudo tee /proc/sys/vm/drop_caches

share|improve this answer
sync is 100% unrelated. I'm talking about long-lived multi-GB read caches, not trivial amounts of short-lived unwritten data which sync deals with (and which gets written to disk every 10 or so seconds anyway). – taw Mar 4 '12 at 2:41
2  
You're talking about disk caches? Try echo 3 | sudo tee /proc/sys/vm/drop_caches – Chris Dennett Mar 4 '12 at 2:43
I'd accept your comment, but that's not possible. – taw Mar 4 '12 at 3:16
I'll put it back into the answer :) – Chris Dennett Mar 4 '12 at 4:29
1  
Actually even though you tell the OS to drop the caches, the hard drive doesn't have to :) The only way to force this to happen is to power down the machine, found this out the hard way (on disk cache) – Jesus Ramos Mar 4 '12 at 4:31
show 3 more comments

Unmounting and re-mounting the disk under test will reset all caches and buffers.

share|improve this answer

You can do it like this:

# sync
# blockdev --flushbufs /dev/sda
# hdparm -F /dev/sda

You may use strace to see that these are three different syscalls

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.