mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
5fd03f8fb0
Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com>
74 lines
1.8 KiB
Go
74 lines
1.8 KiB
Go
package kv
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"path"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/shared/fileutil"
|
|
"github.com/prysmaticlabs/prysm/shared/params"
|
|
bolt "go.etcd.io/bbolt"
|
|
"go.opencensus.io/trace"
|
|
)
|
|
|
|
const backupsDirectoryName = "backups"
|
|
|
|
// Backup the database to the datadir backup directory.
|
|
// Example for backup at slot 345: $DATADIR/backups/prysm_beacondb_at_slot_0000345.backup
|
|
func (s *Store) Backup(ctx context.Context, outputDir string) error {
|
|
ctx, span := trace.StartSpan(ctx, "BeaconDB.Backup")
|
|
defer span.End()
|
|
|
|
var backupsDir string
|
|
var err error
|
|
if outputDir != "" {
|
|
backupsDir, err = fileutil.ExpandPath(outputDir)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
backupsDir = path.Join(s.databasePath, backupsDirectoryName)
|
|
}
|
|
head, err := s.HeadBlock(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if head == nil {
|
|
return errors.New("no head block")
|
|
}
|
|
// Ensure the backups directory exists.
|
|
if err := fileutil.MkdirAll(backupsDir); err != nil {
|
|
return err
|
|
}
|
|
backupPath := path.Join(backupsDir, fmt.Sprintf("prysm_beacondb_at_slot_%07d.backup", head.Block.Slot))
|
|
log.WithField("backup", backupPath).Info("Writing backup database.")
|
|
|
|
copyDB, err := bolt.Open(
|
|
backupPath,
|
|
params.BeaconIoConfig().ReadWritePermissions,
|
|
&bolt.Options{Timeout: params.BeaconIoConfig().BoltTimeout},
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer func() {
|
|
if err := copyDB.Close(); err != nil {
|
|
log.WithError(err).Error("Failed to close backup database")
|
|
}
|
|
}()
|
|
|
|
return s.db.View(func(tx *bolt.Tx) error {
|
|
return tx.ForEach(func(name []byte, b *bolt.Bucket) error {
|
|
log.Debugf("Copying bucket %s\n", name)
|
|
return copyDB.Update(func(tx2 *bolt.Tx) error {
|
|
b2, err := tx2.CreateBucketIfNotExists(name)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return b.ForEach(b2.Put)
|
|
})
|
|
})
|
|
})
|
|
}
|