mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-08 03:51:20 +00:00
c5ffc971c5
* badger v2 investigation * buf pool - use native New method and avoid double checks * db.Open prototype * db.Tx/Bucket/Cursor prototypes * Chained config * Item concept added * save changes to test on master * make hack resumable * Design document v0 * Cursor concept * less brackets syntax of cursor builder * benchmarks * cleanup fs * test for context cancelations * test for context cancelations * test for cursor.Prefix option * add ForEachKey method * add ForEachKey method * add naming explanation * experiment of non-pointers cursor/bucket * .Bucket() and .Cursor() doesn't returns error * .Bucket() and .Cursor() doesn't returns error * .Bucket() and .Cursor() doesn't returns error * remove CursorOpts concept * more test-cases * simplify open api * Tx, Bucket, Cursor - now are interfaces * Tx, Bucket, Cursor - now are interfaces * switch to interfaces * rebase master Co-authored-by: alex.sharov <alex.sharov@lazada.com>
54 lines
1.3 KiB
Go
54 lines
1.3 KiB
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path"
|
|
"time"
|
|
|
|
"github.com/ledgerwatch/bolt"
|
|
"github.com/ledgerwatch/turbo-geth/cmd/state/stateless"
|
|
"github.com/ledgerwatch/turbo-geth/ethdb/remote"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
stateGrowthCmd := &cobra.Command{
|
|
Use: "stateGrowth",
|
|
Short: "stateGrowth",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
localDb, err := bolt.Open(file()+"_sg", 0600, &bolt.Options{})
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
ctx := getContext()
|
|
|
|
remoteDb, err := remote.Open(ctx, remote.DefaultOpts.Addr(remoteDbAddress))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fmt.Println("Processing started...")
|
|
stateless.NewStateGrowth1Reporter(ctx, remoteDb, localDb).StateGrowth1(ctx)
|
|
stateless.NewStateGrowth2Reporter(ctx, remoteDb, localDb).StateGrowth2(ctx)
|
|
return nil
|
|
},
|
|
}
|
|
|
|
withChaindata(stateGrowthCmd)
|
|
withRemoteDb(stateGrowthCmd)
|
|
rootCmd.AddCommand(stateGrowthCmd)
|
|
}
|
|
|
|
// Generate name off the file for snapshot
|
|
// Each day has it's own partition
|
|
// It means that you can only continue execution of report from last snapshot.Save() checkpoint - read buckets forward from last key
|
|
// But not re-read bucket
|
|
func file() string {
|
|
dir := path.Join(os.TempDir(), "turbo_geth_reports")
|
|
if err := os.MkdirAll(dir, 0770); err != nil {
|
|
panic(err)
|
|
}
|
|
return path.Join(dir, time.Now().Format("2006-01-02"))
|
|
}
|