2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-09 20:32:23 +00:00

Loop over index files for 'list blobs'

=> reduces memory consumption a lot!
This commit is contained in:
Alexander Weiss 2020-06-14 09:50:11 +02:00
parent 285b5236c2
commit b5543cff5d
2 changed files with 16 additions and 10 deletions

View File

@ -0,0 +1,6 @@
Enhancement: Optimize `list blobs` command
We've changed the implementation of `list blobs` which should be now a bit faster
and consume almost no memory even for large repositories.
https://github.com/restic/restic/pull/2786

View File

@ -2,7 +2,7 @@ package main
import ( import (
"github.com/restic/restic/internal/errors" "github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/index" "github.com/restic/restic/internal/repository"
"github.com/restic/restic/internal/restic" "github.com/restic/restic/internal/restic"
"github.com/spf13/cobra" "github.com/spf13/cobra"
@ -60,16 +60,16 @@ func runList(cmd *cobra.Command, opts GlobalOptions, args []string) error {
case "locks": case "locks":
t = restic.LockFile t = restic.LockFile
case "blobs": case "blobs":
idx, err := index.Load(opts.ctx, repo, nil) return repo.List(opts.ctx, restic.IndexFile, func(id restic.ID, size int64) error {
if err != nil { idx, err := repository.LoadIndex(opts.ctx, repo, id)
return err if err != nil {
} return err
for _, pack := range idx.Packs {
for _, entry := range pack.Entries {
Printf("%v %v\n", entry.Type, entry.ID)
} }
} for blobs := range idx.Each(opts.ctx) {
Printf("%v %v\n", blobs.Type, blobs.ID)
}
return nil
})
return nil return nil
default: default: