I have come across these two terms and my understanding of them seem to overlap with each other. Flush is used with buffers and sync is used to talk about persisting changes of file to disk.

In C , fflush(stdin) makes sure that the buffer is cleared. And fsync to persist changes file to disk.

If these concepts are not universally defined, would prefer a linux, java explanation.

found a related post, but dosent really answer my question. http://stackoverflow.com/questions/730521/really-force-file-sync-flush-in-java

link|improve this question

68% accept rate
Specifically, I came across this book that relates to Java that says, "make sure to flush and sync". what does each of these steps involve ? I would like an answer that distinguishes both and also a scenario where both are involved. – smartnut007 Nov 1 '10 at 20:50
feedback

1 Answer

up vote 10 down vote accepted

In Java, the flush() method is used in output streams and writers to ensure that buffered data is written out. However, according to the Javadocs:

If the intended destination of this stream is an abstraction provided by the underlying operating system, for example a file, then flushing the stream guarantees only that bytes previously written to the stream are passed to the operating system for writing; it does not guarantee that they are actually written to a physical device such as a disk drive.

On the other hand, FileDescriptor.sync() can be used to ensure that data buffered by the OS is written to the physical device (disk). This is the same as the sync call in Linux / POSIX.

If your Java application really needs to ensure that data is physically written to disk, you may need to flush and sync, e.g.:

FileOutputStream out = new FileOutputStream(filename);

[...]

out.flush();
out.getFD().sync();

References:

link|improve this answer
1  
If I may restate this crudely. So, flush clears the jvm buffer and transfers it to the OS buffer. And sync makes sure the OS actually persists the contents to file. does that makes sense ? – smartnut007 Nov 1 '10 at 20:54
Exactly. This is exactly how it works. – Grodriguez Nov 1 '10 at 20:57
flush says "write out buffers". I am like write out where ? write out sounds synonymous to persist to me. Hence, confusing. – smartnut007 Nov 1 '10 at 20:58
"Write out" in this context means send the data to the actual destination of the output stream or writer. For file-based streams this typically means that any data that is internally buffered by the stream will be sent out to the OS. – Grodriguez Nov 1 '10 at 21:03
1  
Perhaps it helps if you consider that internally, FileOutputStream.flush() may end up calling the POSIX function fwrite() to send any buffered data to the OS. – Grodriguez Nov 1 '10 at 21:06
feedback

Your Answer

 
or
required, but never shown

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