restorer

package
v0.12.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 14, 2021 License: BSD-2-Clause Imports: 15 Imported by: 0

Documentation

Overview

Package restorer contains code to restore data from a repository.

The Restorer tries to keep the number of backend requests minimal. It does this by downloading all required blobs of a pack file with a single backend request and avoiding repeated downloads of the same pack. In addition, several pack files are fetched concurrently.

Here is high-level pseudo-code of how the Restorer attempts to achieve these goals:

while there are packs to process
  choose a pack to process                      [1]
  retrieve the pack from the backend            [2]
  write pack blobs to the files that need them  [3]

Retrieval of repository packs (step [2]) and writing target files (step [3]) are performed concurrently on multiple goroutines.

Implementation does not guarantee order in which blobs are written to the target files and, for example, the last blob of a file can be written to the file before any of the preceding file blobs. It is therefore possible to have gaps in the data written to the target files if restore fails or interrupted by the user.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Restorer

type Restorer struct {
	Error        func(location string, err error) error
	SelectFilter func(item string, dstpath string, node *restic.Node) (selectedForRestore bool, childMayBeSelected bool)
	// contains filtered or unexported fields
}

Restorer is used to restore a snapshot to a directory.

func NewRestorer

func NewRestorer(ctx context.Context, repo restic.Repository, id restic.ID) (*Restorer, error)

NewRestorer creates a restorer preloaded with the content from the snapshot id.

func (*Restorer) RestoreTo

func (res *Restorer) RestoreTo(ctx context.Context, dst string) error

RestoreTo creates the directories and files in the snapshot below dst. Before an item is created, res.Filter is called.

func (*Restorer) Snapshot

func (res *Restorer) Snapshot() *restic.Snapshot

Snapshot returns the snapshot this restorer is configured to use.

func (*Restorer) VerifyFiles

func (res *Restorer) VerifyFiles(ctx context.Context, dst string) (int, error)

VerifyFiles reads all snapshot files and verifies their contents

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL