mirror of
https://github.com/octoleo/restic.git
synced 2024-11-26 06:46:34 +00:00
disable index uploads for prune command
+ modifications of changelog
This commit is contained in:
parent
91906911b0
commit
70347e95d5
@ -1,8 +1,6 @@
|
||||
Enhancement: Optimize repository implementation
|
||||
|
||||
We've optimized the implementation of handling index entries in the repository.
|
||||
Enhancement: Optimize handling of new index entries
|
||||
|
||||
Restic now uses less memory for backups which add a lot of data, e.g. large initial backups.
|
||||
Also it is more stable in some edge situations and allows easier future enhancments.
|
||||
In addition, we've improved the stability in some edge cases.
|
||||
|
||||
https://github.com/restic/restic/pull/2773
|
||||
|
@ -87,6 +87,9 @@ func runPrune(gopts GlobalOptions) error {
|
||||
return err
|
||||
}
|
||||
|
||||
// we do not need index updates while pruning!
|
||||
repo.DisableAutoIndexUpdate()
|
||||
|
||||
return pruneRepository(gopts, repo)
|
||||
}
|
||||
|
||||
|
@ -140,6 +140,9 @@ func (r *Repository) savePacker(ctx context.Context, t restic.BlobType, p *Packe
|
||||
r.idx.StorePack(id, p.Packer.Blobs())
|
||||
|
||||
// Save index if full
|
||||
if r.noAutoIndexUpdate {
|
||||
return nil
|
||||
}
|
||||
return r.SaveFullIndex(ctx)
|
||||
}
|
||||
|
||||
|
@ -28,6 +28,7 @@ type Repository struct {
|
||||
keyName string
|
||||
idx *MasterIndex
|
||||
restic.Cache
|
||||
noAutoIndexUpdate bool
|
||||
|
||||
treePM *packerManager
|
||||
dataPM *packerManager
|
||||
@ -45,6 +46,10 @@ func New(be restic.Backend) *Repository {
|
||||
return repo
|
||||
}
|
||||
|
||||
func (r *Repository) DisableAutoIndexUpdate() {
|
||||
r.noAutoIndexUpdate = true
|
||||
}
|
||||
|
||||
// Config returns the repository configuration.
|
||||
func (r *Repository) Config() restic.Config {
|
||||
return r.cfg
|
||||
|
Loading…
Reference in New Issue
Block a user