APLawrence - Information and Resources for Unix and Linux Systems, Bloggers and the self-employed
RSS Feeds Get APLawrence.com by RSS











(OLDER) <- More Stuff -> (NEWER) (NEWEST)
Home > Misc. Words > Understanding sparse files
Printer Friendly Version




sparse file


Sparse files are a result of the way Unix file systems allocate storage space. Sparse files appear to take up much more disk space than they actually do.

Traditional Unix file systems have thirteen disk block pointers in the inode. The first 10 are direct pointers; that is they point to actual disk blocks.

The next pointer is an indirect pointer: it points to a block that contains pointers to actual storage blocks. If the pointers are 32 bit numbers (more likely to be larger nowadays but this makes the math easy for us), there will be 128 blocks covered by the 11th pointer. The next points to double indirect blocks: blocks which themselves contain more pointers to the actual blocks. The 13th is triple indirect: pointers to blocks of pointers to blocks of pointers. This scheme lets you have very large files without very large inode records.

If a program opens a new file and seeks to a point beyond that covered by the first 10 pointers and writes data there, the OS doesn't bother to allocate data blocks that are not used, so those first 10 pointers are still empty. The same is true for some of the indirect pointers if the next seek extends beyond their reach. Database files using hash keys often create such files as a natural result of the hash key creation. The file may show it has a very large size in an ls -l listing, but it could actually be consuming only a very few disk blocks. If you read data from such a file, the OS just returns null bytes for the unallocated space, which means that naively copying it will NOT create another sparse file (although GNU cp is aware of sparse files and will preserve the sparseness). The same is true when backing up to tape (again, modern utilities can properly handle this).












See Backups and sparse files and Sparse files and hashing also.


If this page was useful to you, please click to help others find it:  

Your +1's can help friends, contacts, and others on the web find the best stuff when they search.

Comments?




More Articles by Tony Lawrence - Find me on Google+



Click here to add your comments



Don't miss responses! Subscribe to Comments by RSS or by Email

Click here to add your comments


If you want a picture to show with your comment, go get a Gravatar


cartoon

Have you tried Searching this site?

Unix/Linux/Mac OS X support by phone, email or on-site: Support Rates

This is a Unix/Linux resource website. It contains technical articles about Unix, Linux and general computing related subjects, opinion, news, help files, how-to's, tutorials and more. We appreciate comments and article submissions.

Publishing your articles here

Jump to Comments



Many of the products and books I review are things I purchased for my own use. Some were given to me specifically for the purpose of reviewing them. I resell or can earn commissions from the sale of some of these items. Links within these pages may be affiliate links that pay me for referring you to them. That's mostly insignificant amounts of money; whenever it is not I have made my relationship plain. I also may own stock in companies mentioned here. If you have any question, please do feel free to contact me.

Specific links that take you to pages that allow you to purchase the item I reviewed are very likely to pay me a commission. Many of the books I review were given to me by the publishers specifically for the purpose of writing a review. These gifts and referral fees do not affect my opinions; I often give bad reviews anyway.

We use Google third-party advertising companies to serve ads when you visit our website. These companies may use information (not including your name, address, email address, or telephone number) about your visits to this and other websites in order to provide advertisements about goods and services of interest to you. If you would like more information about this practice and to know your choices about not having this information used by these companies, click here.


My Troubleshooting E-Book will show you how to solve tough problems on Linux and Unix systems!


book graphic unix and linux troubleshooting guide




 I sell and support
 Kerio Mail server
pavatar.jpg

This post tagged:

       - Shell
       - Unix Words




Unix/Linux Consultants

Skills Tests

Guest Post Here