erigon-pulse/cmd/snapshots/generator/commands/generate_body_snapshot.go
b00ris 57473175ff
Body snapshot (#2100)
* fix test

* get rid of ObjectDatabase

* sn_builder_prototype2

* save state

* save state

* integration step1

* fix lint

* fix

* fix test

* integrate migrator.finish

* fix lint

* fix build

* fix typo

* save state

* body snapshot test

* unique tx

* body snapshot generation using walk

* move methods out of test

* block data verification added

* fix lint

* test with remove works correctly

* fix lint

* remove experiment test

* fix test

* add comment

* add second layer of remove test

* rename test

* fix typos

* fix lint

* revert testdata

* body snapshot migration save state

* fix body snapshot migration

* fix after merge

* remove debug test

* debug windows build

* fix build

* fix

* fix lint

* debug

* fix

* fix windows build

* simplify snapshot management&&get rid of lazy tx

* fix lint

* fix windows path

* debug

* debug

* debug

* debug

* remove geometry experiments

* skip windows tests

* clean

* fix

* fix ;int
2021-07-06 23:33:26 +01:00

89 lines
2.4 KiB
Go

package commands
import (
"context"
"fmt"
"os"
"time"
kv2 "github.com/ledgerwatch/erigon/ethdb/kv"
"github.com/spf13/cobra"
"github.com/ledgerwatch/erigon/common"
"github.com/ledgerwatch/erigon/common/dbutils"
"github.com/ledgerwatch/erigon/core/rawdb"
"github.com/ledgerwatch/erigon/ethdb"
"github.com/ledgerwatch/erigon/log"
)
func init() {
withDatadir(generateBodiesSnapshotCmd)
withSnapshotFile(generateBodiesSnapshotCmd)
withBlock(generateBodiesSnapshotCmd)
rootCmd.AddCommand(generateBodiesSnapshotCmd)
}
var generateBodiesSnapshotCmd = &cobra.Command{
Use: "bodies",
Short: "Generate bodies snapshot",
Example: "go run cmd/snapshots/generator/main.go bodies --block 11000000 --datadir /media/b00ris/nvme/snapshotsync/ --snapshotDir /media/b00ris/nvme/snapshotsync/tg/snapshots/ --snapshotMode \"hb\" --snapshot /media/b00ris/nvme/snapshots/bodies_test",
RunE: func(cmd *cobra.Command, args []string) error {
return BodySnapshot(cmd.Context(), chaindata, snapshotFile, block, snapshotDir, snapshotMode)
},
}
func BodySnapshot(ctx context.Context, dbPath, snapshotPath string, toBlock uint64, snapshotDir string, snapshotMode string) error {
kv := kv2.NewMDBX().Path(dbPath).MustOpen()
snKV := kv2.NewMDBX().WithBucketsConfig(func(defaultBuckets dbutils.BucketsCfg) dbutils.BucketsCfg {
return dbutils.BucketsCfg{
dbutils.BlockBodyPrefix: dbutils.BucketConfigItem{},
}
}).Path(snapshotPath).MustOpen()
tx, err := kv.BeginRo(context.Background())
if err != nil {
return err
}
defer tx.Rollback()
logEvery := time.NewTicker(30 * time.Second)
defer logEvery.Stop()
t := time.Now()
var hash common.Hash
if err := snKV.Update(ctx, func(sntx ethdb.RwTx) error {
for i := uint64(1); i <= toBlock; i++ {
if common.IsCanceled(ctx) {
return common.ErrStopped
}
hash, err = rawdb.ReadCanonicalHash(tx, i)
if err != nil {
return fmt.Errorf("getting canonical hash for block %d: %v", i, err)
}
body := rawdb.ReadBodyRLP(tx, hash, i)
if err = sntx.Put(dbutils.BlockBodyPrefix, dbutils.BlockBodyKey(i, hash), body); err != nil {
return err
}
select {
case <-logEvery.C:
log.Info("progress", "bucket", dbutils.BlockBodyPrefix, "block num", i)
default:
}
}
return nil
}); err != nil {
return err
}
snKV.Close()
err = os.Remove(snapshotPath + "/mdbx.lck")
if err != nil {
log.Warn("Remove lock", "err", err)
return err
}
log.Info("Finished", "duration", time.Since(t))
return nil
}