Not again
Posted Dec 30, 2010 13:43 UTC (Thu) by
man_ls (subscriber, #15091)
In reply to:
Not again by Nick
Parent article:
Ext4 filesystem hits Android, no need to fear data loss (ars technica)
What is missing is that you don't really want all the files you write to be durable, even if you think you do: many of them are just temporary files which won't perhaps be needed in the future, and for the rest the write operation can be delayed a few seconds with no ill effects. You just want your renames to be atomic: either keep the old file or overwrite it with the new one. And the same with appends. It's not really important which version (old or new) is left on disk, but do never leave corrupted files (empty files or files with unitialized sectors).
You can paper over these inefficiencies with new APIs; you can require all developers to use them before you make guarantees about not corrupting data; or you can force them to use threads or processes. But those are not very elegant ways to deal with the problem. I prefer to have a filesystem which silently deals with the problem without corrupting my data, like we did with ext3 in the good old times.
But once again, please read the original articles where these issues were truly beaten to death.
(
Log in to post comments)