1
0
mirror of https://github.com/restic/restic.git synced 2024-06-28 08:00:52 +02:00
restic/internal/restorer
Michael Eischer c147422ba5 repository: special case SaveBlob for all zero chunks
Sparse files contain large regions containing only zero bytes. Checking
that a blob only contains zeros is possible with over 100GB/s for modern
x86 CPUs. Calculating sha256 hashes is only possible with 500MB/s (or
2GB/s using hardware acceleration). Thus we can speed up the hash
calculation for all zero blobs (which always have length
chunker.MinSize) by checking for zero bytes and then using the
precomputed hash.

The all zeros check is only performed for blobs with the minimal chunk
size, and thus should add no overhead most of the time. For chunks which
are not all zero but have the minimal chunks size, the overhead will be
below 2% based on the above performance numbers.

This allows reading sparse sections of files as fast as the kernel can
return data to us. On my system using BTRFS this resulted in about
4GB/s.
2022-09-24 21:39:39 +02:00
..
doc.go gofmt all files 2022-08-19 19:12:26 +02:00
filerestorer_test.go Enable sparseness only conditionally 2022-09-24 21:20:00 +02:00
filerestorer.go repository: special case SaveBlob for all zero chunks 2022-09-24 21:39:39 +02:00
fileswriter_test.go Enable sparseness only conditionally 2022-09-24 21:20:00 +02:00
fileswriter.go restorer: Fix race condition in partialFile.WriteAt 2022-09-24 21:39:39 +02:00
hardlinks_index_test.go restorer: extract hardlinks index from restic package 2022-07-17 13:45:42 +02:00
hardlinks_index.go restorer: extract hardlinks index from restic package 2022-07-17 13:45:42 +02:00
preallocate_darwin.go Use FcntlFstore to preallocate on Mac 2021-04-10 16:54:07 +02:00
preallocate_linux.go restorer: pre-allocate files before loading chunks 2020-09-07 21:41:47 +02:00
preallocate_other.go add go:build headers everywhere 2022-03-28 22:23:47 +02:00
preallocate_test.go restorer: Skip preallocate test if not supported by the filesystem 2021-03-04 20:33:46 +01:00
restorer_test.go Enable sparseness only conditionally 2022-09-24 21:20:00 +02:00
restorer_unix_test.go restorer: move zeroPrefixLen to restic package 2022-09-24 21:39:39 +02:00
restorer.go Enable sparseness only conditionally 2022-09-24 21:20:00 +02:00
sparsewrite.go restorer: move zeroPrefixLen to restic package 2022-09-24 21:39:39 +02:00