mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-31 16:21:21 +00:00
79ed8cad35
This change introduces additional processes to manage snapshot uploading for E2 snapshots: ## erigon snapshots upload The `snapshots uploader` command starts a version of erigon customized for uploading snapshot files to a remote location. It breaks the stage execution process after the senders stage and then uses the snapshot stage to send uploaded headers, bodies and (in the case of polygon) bor spans and events to snapshot files. Because this process avoids execution in run signifigantly faster than a standard erigon configuration. The uploader uses rclone to send seedable (100K or 500K blocks) to a remote storage location specified in the rclone config file. The **uploader** is configured to minimize disk usage by doing the following: * It removes snapshots once they are loaded * It aggressively prunes the database once entities are transferred to snapshots in addition to this it has the following performance related features: * maximizes the workers allocated to snapshot processing to improve throughput * Can be started from scratch by downloading the latest snapshots from the remote location to seed processing ## snapshots command Is a stand alone command for managing remote snapshots it has the following sub commands * **cmp** - compare snapshots * **copy** - copy snapshots * **verify** - verify snapshots * **manifest** - manage the manifest file in the root of remote snapshot locations * **torrent** - manage snapshot torrent files
197 lines
5.0 KiB
Go
197 lines
5.0 KiB
Go
package snapcfg
|
|
|
|
import (
|
|
_ "embed"
|
|
"path/filepath"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/ledgerwatch/erigon-lib/chain/networkname"
|
|
snapshothashes "github.com/ledgerwatch/erigon-snapshot"
|
|
"github.com/ledgerwatch/erigon-snapshot/webseed"
|
|
"github.com/pelletier/go-toml/v2"
|
|
"golang.org/x/exp/slices"
|
|
)
|
|
|
|
var (
|
|
Mainnet = fromToml(snapshothashes.Mainnet)
|
|
// Holesky = fromToml(snapshothashes.Holesky)
|
|
Sepolia = fromToml(snapshothashes.Sepolia)
|
|
Goerli = fromToml(snapshothashes.Goerli)
|
|
Mumbai = fromToml(snapshothashes.Mumbai)
|
|
Amoy = fromToml(snapshothashes.Amoy)
|
|
BorMainnet = fromToml(snapshothashes.BorMainnet)
|
|
Gnosis = fromToml(snapshothashes.Gnosis)
|
|
Chiado = fromToml(snapshothashes.Chiado)
|
|
)
|
|
|
|
type PreverifiedItem struct {
|
|
Name string
|
|
Hash string
|
|
}
|
|
type Preverified []PreverifiedItem
|
|
type preverified map[string]string
|
|
|
|
func fromToml(in []byte) (out Preverified) {
|
|
var outMap preverified
|
|
if err := toml.Unmarshal(in, &outMap); err != nil {
|
|
panic(err)
|
|
}
|
|
return doSort(outMap)
|
|
}
|
|
func doSort(in preverified) Preverified {
|
|
out := make(Preverified, 0, len(in))
|
|
for k, v := range in {
|
|
out = append(out, PreverifiedItem{k, v})
|
|
}
|
|
slices.SortFunc(out, func(i, j PreverifiedItem) int { return strings.Compare(i.Name, j.Name) })
|
|
return out
|
|
}
|
|
|
|
var (
|
|
isDefaultVersion bool = true
|
|
snapshotVersion uint8 = 1
|
|
)
|
|
|
|
func SnapshotVersion(version uint8) {
|
|
snapshotVersion = version
|
|
isDefaultVersion = false
|
|
}
|
|
|
|
func newCfg(preverified Preverified, version uint8) *Cfg {
|
|
|
|
if version == 0 {
|
|
version = snapshotVersion
|
|
|
|
var pv Preverified
|
|
|
|
for _, p := range preverified {
|
|
if v, _, ok := strings.Cut(p.Name, "-"); ok && strings.HasPrefix(v, "v") {
|
|
if v, err := strconv.ParseUint(v[1:], 10, 8); err == nil && uint64(version) == v {
|
|
pv = append(pv, p)
|
|
}
|
|
}
|
|
}
|
|
|
|
// don't do this check if the SnapshotVersion has been explicitly set
|
|
if len(pv) == 0 && isDefaultVersion {
|
|
version = maxVersion(preverified)
|
|
|
|
for _, p := range preverified {
|
|
if v, _, ok := strings.Cut(p.Name, "-"); ok && strings.HasPrefix(v, "v") {
|
|
if v, err := strconv.ParseUint(v[1:], 10, 8); err == nil && uint64(version) == v {
|
|
pv = append(pv, p)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
preverified = pv
|
|
}
|
|
|
|
maxBlockNum, version := cfgInfo(preverified, version)
|
|
return &Cfg{ExpectBlocks: maxBlockNum, Preverified: preverified, Version: version}
|
|
}
|
|
|
|
func cfgInfo(preverified Preverified, defaultVersion uint8) (uint64, uint8) {
|
|
max := uint64(0)
|
|
version := defaultVersion
|
|
|
|
for _, p := range preverified {
|
|
_, fileName := filepath.Split(p.Name)
|
|
ext := filepath.Ext(fileName)
|
|
if ext != ".seg" {
|
|
continue
|
|
}
|
|
onlyName := fileName[:len(fileName)-len(ext)]
|
|
parts := strings.Split(onlyName, "-")
|
|
if parts[3] != "headers" {
|
|
continue
|
|
}
|
|
to, err := strconv.ParseUint(parts[2], 10, 64)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if max < to {
|
|
max = to
|
|
}
|
|
|
|
if vp := parts[0]; strings.HasPrefix(vp, "v") {
|
|
if v, err := strconv.ParseUint(vp[1:], 10, 8); err == nil {
|
|
version = uint8(v)
|
|
}
|
|
}
|
|
}
|
|
if max == 0 { // to prevent underflow
|
|
return 0, version
|
|
}
|
|
return max*1_000 - 1, version
|
|
}
|
|
|
|
type Cfg struct {
|
|
ExpectBlocks uint64
|
|
Version uint8
|
|
Preverified Preverified
|
|
}
|
|
|
|
var knownPreverified = map[string]Preverified{
|
|
networkname.MainnetChainName: Mainnet,
|
|
// networkname.HoleskyChainName: HoleskyChainSnapshotCfg,
|
|
networkname.SepoliaChainName: Sepolia,
|
|
networkname.GoerliChainName: Goerli,
|
|
networkname.MumbaiChainName: Mumbai,
|
|
networkname.AmoyChainName: Amoy,
|
|
networkname.BorMainnetChainName: BorMainnet,
|
|
networkname.GnosisChainName: Gnosis,
|
|
networkname.ChiadoChainName: Chiado,
|
|
}
|
|
|
|
// KnownCfg return list of preverified hashes for given network, but apply whiteList filter if it's not empty
|
|
func KnownCfg(networkName string, version uint8) *Cfg {
|
|
c, ok := knownPreverified[networkName]
|
|
if !ok {
|
|
return newCfg(Preverified{}, version)
|
|
}
|
|
return newCfg(c, version)
|
|
}
|
|
|
|
func maxVersion(pv Preverified) uint8 {
|
|
var max uint8
|
|
|
|
for _, p := range pv {
|
|
if v, _, ok := strings.Cut(p.Name, "-"); ok && strings.HasPrefix(v, "v") {
|
|
if v, err := strconv.ParseUint(v[1:], 10, 8); err == nil {
|
|
version := uint8(v)
|
|
if max < version {
|
|
max = version
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return max
|
|
}
|
|
|
|
var KnownWebseeds = map[string][]string{
|
|
networkname.MainnetChainName: webseedsParse(webseed.Mainnet),
|
|
networkname.SepoliaChainName: webseedsParse(webseed.Sepolia),
|
|
networkname.GoerliChainName: webseedsParse(webseed.Goerli),
|
|
networkname.MumbaiChainName: webseedsParse(webseed.Mumbai),
|
|
networkname.AmoyChainName: webseedsParse(webseed.Amoy),
|
|
networkname.BorMainnetChainName: webseedsParse(webseed.BorMainnet),
|
|
networkname.GnosisChainName: webseedsParse(webseed.Gnosis),
|
|
networkname.ChiadoChainName: webseedsParse(webseed.Chiado),
|
|
}
|
|
|
|
func webseedsParse(in []byte) (res []string) {
|
|
a := map[string]string{}
|
|
if err := toml.Unmarshal(in, &a); err != nil {
|
|
panic(err)
|
|
}
|
|
for _, l := range a {
|
|
res = append(res, l)
|
|
}
|
|
slices.Sort(res)
|
|
return res
|
|
}
|