mirror of
https://github.com/octoleo/restic.git
synced 2024-11-26 14:56:29 +00:00
Add Preloader for blobs
This commit is contained in:
parent
c631b5c738
commit
4bb7f2f2ed
39
archiver.go
39
archiver.go
@ -59,6 +59,45 @@ func NewArchiver(s Server, p *Progress) (*Archiver, error) {
|
|||||||
return arch, nil
|
return arch, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Preload loads all tree objects from repository and adds all blobs that are
|
||||||
|
// still available to the map for deduplication.
|
||||||
|
func (arch *Archiver) Preload() error {
|
||||||
|
// load all trees, in parallel
|
||||||
|
worker := func(wg *sync.WaitGroup, c <-chan backend.ID) {
|
||||||
|
for id := range c {
|
||||||
|
tree, err := LoadTree(arch.s, id)
|
||||||
|
// ignore error and advance to next tree
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
arch.m.Merge(tree.Map)
|
||||||
|
}
|
||||||
|
wg.Done()
|
||||||
|
}
|
||||||
|
|
||||||
|
idCh := make(chan backend.ID)
|
||||||
|
|
||||||
|
// start workers
|
||||||
|
var wg sync.WaitGroup
|
||||||
|
for i := 0; i < maxConcurrency; i++ {
|
||||||
|
wg.Add(1)
|
||||||
|
go worker(&wg, idCh)
|
||||||
|
}
|
||||||
|
|
||||||
|
// list ids
|
||||||
|
err := arch.s.EachID(backend.Tree, func(id backend.ID) {
|
||||||
|
idCh <- id
|
||||||
|
})
|
||||||
|
|
||||||
|
close(idCh)
|
||||||
|
|
||||||
|
// wait for workers
|
||||||
|
wg.Wait()
|
||||||
|
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
func (arch *Archiver) Save(t backend.Type, id backend.ID, length uint, rd io.Reader) (Blob, error) {
|
func (arch *Archiver) Save(t backend.Type, id backend.ID, length uint, rd io.Reader) (Blob, error) {
|
||||||
debug.Log("Archiver.Save", "Save(%v, %v)\n", t, id.Str())
|
debug.Log("Archiver.Save", "Save(%v, %v)\n", t, id.Str())
|
||||||
|
|
||||||
|
@ -8,10 +8,11 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/restic/restic"
|
"github.com/restic/restic"
|
||||||
|
"github.com/restic/restic/backend"
|
||||||
"github.com/restic/restic/chunker"
|
"github.com/restic/restic/chunker"
|
||||||
)
|
)
|
||||||
|
|
||||||
var benchArchiveDirectory = flag.String("test.benchdir", "", "benchmark archiving a real directory")
|
var benchArchiveDirectory = flag.String("test.benchdir", ".", "benchmark archiving a real directory (default: .)")
|
||||||
|
|
||||||
func get_random(seed, count int) []byte {
|
func get_random(seed, count int) []byte {
|
||||||
buf := make([]byte, count)
|
buf := make([]byte, count)
|
||||||
@ -141,3 +142,54 @@ func BenchmarkArchiveDirectory(b *testing.B) {
|
|||||||
|
|
||||||
b.Logf("snapshot archived as %v", id)
|
b.Logf("snapshot archived as %v", id)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func snapshot(t *testing.T, server restic.Server, path string) *restic.Snapshot {
|
||||||
|
arch, err := restic.NewArchiver(server, nil)
|
||||||
|
ok(t, err)
|
||||||
|
ok(t, arch.Preload())
|
||||||
|
sn, _, err := arch.Snapshot(path, nil)
|
||||||
|
ok(t, err)
|
||||||
|
return sn
|
||||||
|
}
|
||||||
|
|
||||||
|
func countBlobs(t *testing.T, server restic.Server) int {
|
||||||
|
blobs := 0
|
||||||
|
err := server.EachID(backend.Tree, func(id backend.ID) {
|
||||||
|
tree, err := restic.LoadTree(server, id)
|
||||||
|
ok(t, err)
|
||||||
|
|
||||||
|
blobs += tree.Map.Len()
|
||||||
|
})
|
||||||
|
ok(t, err)
|
||||||
|
|
||||||
|
return blobs
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestArchiverPreload(t *testing.T) {
|
||||||
|
be := setupBackend(t)
|
||||||
|
defer teardownBackend(t, be)
|
||||||
|
key := setupKey(t, be, "geheim")
|
||||||
|
server := restic.NewServerWithKey(be, key)
|
||||||
|
|
||||||
|
// archive a few files
|
||||||
|
sn := snapshot(t, server, *benchArchiveDirectory)
|
||||||
|
t.Logf("archived snapshot %v", sn.ID)
|
||||||
|
|
||||||
|
// get archive stats
|
||||||
|
blobsBefore := countBlobs(t, server)
|
||||||
|
t.Logf("found %v blobs", blobsBefore)
|
||||||
|
|
||||||
|
// archive the same files again
|
||||||
|
sn2 := snapshot(t, server, *benchArchiveDirectory)
|
||||||
|
t.Logf("archived snapshot %v", sn2.ID)
|
||||||
|
|
||||||
|
// get archive stats
|
||||||
|
blobsAfter := countBlobs(t, server)
|
||||||
|
t.Logf("found %v blobs", blobsAfter)
|
||||||
|
|
||||||
|
// if there are more than 10% more blobs, something is wrong
|
||||||
|
if blobsAfter > (blobsBefore + blobsBefore/10) {
|
||||||
|
t.Fatalf("TestArchiverPreload: too many blobs in repository: before %d, after %d, threshhold %d",
|
||||||
|
blobsBefore, blobsAfter, (blobsBefore + blobsBefore/10))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -193,6 +193,12 @@ func (cmd CmdBackup) Execute(args []string) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fmt.Printf("loading blobs\n")
|
||||||
|
err = arch.Preload()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
_, id, err := arch.Snapshot(target, parentSnapshotID)
|
_, id, err := arch.Snapshot(target, parentSnapshotID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
Loading…
Reference in New Issue
Block a user