If I have a big file containing many zeros, how can i efficiently make it a sparse file?

Is the only possibility to read the whole file (including all zeroes, which may patrially be stored sparse) and to rewrite it to a new file using seek to skip the zero areas?

Or is there a possibility to make this in an existing file (e.g. File.setSparse(long start, long end))?

I'm looking for a solution in Java or some Linux commands, Filesystem will be ext3 or similar.

link|improve this question

3  
The first solution is implemented in 'cp --sparse=always', but that is not efficient and requires copying the file and moving afterwards. – rurouni May 13 '11 at 8:39
1  
@joe: that is about creating a sparse file from scratch, but I want ta make an existing file sparse. – rurouni May 13 '11 at 8:45
1  
@runouni, If the holes are large enough, perhaps it is worth breaking up the file and using the filesystem to delete/remove sections. – Peter Lawrey May 13 '11 at 9:15
1  
Making a file sparse would result in those sections being fragmented if they were ever re-used. I think you would be better off pre-allocating the whole file and maintaining a table/BitSet of the pages/sections which are occupied. Perhaps saving a few TB of disk space is not worth the performance hit of a highly fragmented file. – Peter Lawrey May 13 '11 at 9:21
show 6 more comments
feedback

4 Answers

up vote 3 down vote accepted

Some filesystems on Linux / UNIX have the ability to "punch holes" into an existing file. See:

It's not very portable and not done the same way across the board; as of right now, I believe Java's IO libraries do not provide an interface for this.

If hole punching is available either via fcntl(F_FREESP) or via any other mechanism, it should be significantly faster than a copy/seek loop.

link|improve this answer
do you know if there is a tool applying this to a file as I'm not an experienced C hacker. – rurouni May 13 '11 at 11:13
top quality answer. thanks – sehe Jan 4 at 22:51
feedback

I think you would be better off pre-allocating the whole file and maintaining a table/BitSet of the pages/sections which are occupied.

Making a file sparse would result in those sections being fragmented if they were ever re-used. Perhaps saving a few TB of disk space is not worth the performance hit of a highly fragmented file.

link|improve this answer
feedback

According to this article, it seems there is currently no easy solution, except for using FIEMAP ioctl. However, I don't know how you can make "non sparse" zero blocks into "sparse" ones.

link|improve this answer
feedback

You can use $ truncate -s filename filesize on linux teminal to create sparse file having

only metadata.

NOTE --Filesize is in bytes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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