The ext3cow File System
Thursday, May 03, 2007
The ext3 file system is a very popular, and powerful file system used in many of today's distros. But, there is always room to innovate, as the developers of the ext3cow file system are showing.
Read more about the ext3cow file system @ ext3cow.com.
Note from the Nerd: I'll have to try this when school is out... right now, its just tests, exams, projects, studying, etc. I have some nice stuff in store for the summer though.... :-)
Ext3cow is an open-source, versioning file system based on ext3. It provides a time-shifting interface that allows a real-time and continuous view of the past. This allows users to access their file system as it appeared at any point in time.The ext3cow file system is basically an ext3 file system with (and this is where it gets interesting) a copy-on-write mechanism (hence, COW). The developers explain it better:
COW stands for copy-on-write, the mechanism used to implement block versioning. It works like this: When you make a change to a file, instead of writing the new data over the old data, we preserve the old data, and allocate new data blocks for the new data. Only the changed data is given a new allocation, allowing similar data blocks to be shared between versions — this minimizes the amount of data required to support versioning.This feature can be useful in a wide variety of both desktop/ client and server applications, as one can well imagine. The best news is that there is a relatively low overhead (one has to allocate space for those "backups" somewhere), ranging from about 5% - 15%. It also has in extremely simple interface (see here), which adds to its appeal. Add to that the fact that it is completely modular (no changes to the kernel or VFS interfaces), and you have a very compelling argument for the ext3cow file system.
Read more about the ext3cow file system @ ext3cow.com.
Note from the Nerd: I'll have to try this when school is out... right now, its just tests, exams, projects, studying, etc. I have some nice stuff in store for the summer though.... :-)