package pruner

import "github.com/ethereum/go-ethereum/core/state/pruner"

Index

Functions

func NewStateBloomFromDisk

func NewStateBloomFromDisk(filename string) (*stateBloom, error)

NewStateBloomFromDisk loads the state bloom from the given file. In this case the assumption is held the bloom filter is complete.

func RecoverPruning

func RecoverPruning(datadir string, db ethdb.Database) error

RecoverPruning will resume the pruning procedure during the system restart. This function is used in this case: user tries to prune state data, but the system was interrupted midway because of crash or manual-kill. In this case if the bloom filter for filtering active state is already constructed, the pruning can be resumed. What's more if the bloom filter is constructed, the pruning **has to be resumed**. Otherwise a lot of dangling nodes may be left in the disk.

Types

type Config

type Config struct {
	Datadir   string // The directory of the state database
	BloomSize uint64 // The Megabytes of memory allocated to bloom-filter
}

Config includes all the configurations for pruning.

type Pruner

type Pruner struct {
	// contains filtered or unexported fields
}

Pruner is an offline tool to prune the stale state with the help of the snapshot. The workflow of pruner is very simple:

It can take several hours(around 2 hours for mainnet) to finish the whole pruning work. It's recommended to run this offline tool periodically in order to release the disk usage and improve the disk read performance to some extent.

func NewPruner

func NewPruner(db ethdb.Database, config Config) (*Pruner, error)

NewPruner creates the pruner instance.

func (*Pruner) Prune

func (p *Pruner) Prune(root common.Hash) error

Prune deletes all historical state nodes except the nodes belong to the specified state version. If user doesn't specify the state version, use the bottom-most snapshot diff layer as the target.

Source Files

bloom.go pruner.go

Version
v1.15.11 (latest)
Published
May 5, 2025
Platform
linux/amd64
Imports
19 packages
Last checked
21 hours ago

Tools for package owners.