Make sure that statediff has been processed before pruning
This commit is contained in:
parent
91b5f52ef7
commit
38a55abb0b
@ -158,6 +158,10 @@ func makeFullNode(ctx *cli.Context) *node.Node {
|
|||||||
cfg.Eth.ConstantinopleOverride = new(big.Int).SetUint64(ctx.GlobalUint64(utils.ConstantinopleOverrideFlag.Name))
|
cfg.Eth.ConstantinopleOverride = new(big.Int).SetUint64(ctx.GlobalUint64(utils.ConstantinopleOverrideFlag.Name))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ctx.GlobalBool(utils.StateDiffFlag.Name) {
|
||||||
|
cfg.Eth.StateDiff = true
|
||||||
|
}
|
||||||
|
|
||||||
utils.RegisterEthService(stack, &cfg.Eth)
|
utils.RegisterEthService(stack, &cfg.Eth)
|
||||||
|
|
||||||
if ctx.GlobalBool(utils.StateDiffFlag.Name) {
|
if ctx.GlobalBool(utils.StateDiffFlag.Name) {
|
||||||
|
@ -95,7 +95,7 @@ type CacheConfig struct {
|
|||||||
TrieDirtyLimit int // Memory limit (MB) at which to start flushing dirty trie nodes to disk
|
TrieDirtyLimit int // Memory limit (MB) at which to start flushing dirty trie nodes to disk
|
||||||
TrieDirtyDisabled bool // Whether to disable trie write caching and GC altogether (archive node)
|
TrieDirtyDisabled bool // Whether to disable trie write caching and GC altogether (archive node)
|
||||||
TrieTimeLimit time.Duration // Time limit after which to flush the current in-memory trie to disk
|
TrieTimeLimit time.Duration // Time limit after which to flush the current in-memory trie to disk
|
||||||
ProcessingStateDiffs bool // Whether statediffs processing should be taken into a account before a trie is pruned
|
ProcessStateDiffs bool // Whether statediffs processing should be taken into a account before a trie is pruned
|
||||||
}
|
}
|
||||||
|
|
||||||
// BlockChain represents the canonical chain given a database with a genesis
|
// BlockChain represents the canonical chain given a database with a genesis
|
||||||
@ -937,8 +937,17 @@ func (bc *BlockChain) WriteBlockWithoutState(block *types.Block, td *big.Int) (e
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (bc *BlockChain) AddToStateDiffProcessedCollection(hash common.Hash) {
|
func (bc *BlockChain) AddToStateDiffProcessedCollection(hash common.Hash) {
|
||||||
count := bc.stateDiffsProcessed[hash]
|
count, ok := bc.stateDiffsProcessed[hash]
|
||||||
bc.stateDiffsProcessed[hash] = count + 1
|
if count > 1 {
|
||||||
|
log.Error("count is too high", "count", count, "hash", hash.Hex())
|
||||||
|
}
|
||||||
|
|
||||||
|
if ok {
|
||||||
|
count++
|
||||||
|
bc.stateDiffsProcessed[hash] = count
|
||||||
|
} else {
|
||||||
|
bc.stateDiffsProcessed[hash] = 1
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// WriteBlockWithState writes the block and all associated state to the database.
|
// WriteBlockWithState writes the block and all associated state to the database.
|
||||||
@ -1025,16 +1034,27 @@ func (bc *BlockChain) writeBlockWithState(block *types.Block, receipts []*types.
|
|||||||
bc.triegc.Push(root, number)
|
bc.triegc.Push(root, number)
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
if bc.cacheConfig.ProcessStateDiffs {
|
||||||
if bc.cacheConfig.ProcessingStateDiffs {
|
count, ok := bc.stateDiffsProcessed[root.(common.Hash)]
|
||||||
if !bc.allowedRootToBeDereferenced(root.(common.Hash)) {
|
//if we haven't processed the statediff for a given state root and it's child, don't dereference it yet
|
||||||
|
if !ok {
|
||||||
|
log.Info("Current root NOT found root in stateDiffsProcessed", "root", root.(common.Hash).Hex())
|
||||||
|
bc.triegc.Push(root, number)
|
||||||
|
break
|
||||||
|
}
|
||||||
|
if count < 2 {
|
||||||
|
log.Info("Current root has not yet been processed for it's child", "root", root.(common.Hash).Hex())
|
||||||
bc.triegc.Push(root, number)
|
bc.triegc.Push(root, number)
|
||||||
break
|
break
|
||||||
} else {
|
} else {
|
||||||
|
log.Warn("Current root found in stateDiffsProcessed collection with a count of 2, okay to dereference",
|
||||||
|
"root", root.(common.Hash).Hex(),
|
||||||
|
"blockNumber", uint64(-number),
|
||||||
|
"size of stateDiffsProcessed", len(bc.stateDiffsProcessed))
|
||||||
delete(bc.stateDiffsProcessed, root.(common.Hash))
|
delete(bc.stateDiffsProcessed, root.(common.Hash))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
log.Info("DEREFERENCING", "root", root.(common.Hash).Hex())
|
||||||
triedb.Dereference(root.(common.Hash))
|
triedb.Dereference(root.(common.Hash))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1816,11 +1816,11 @@ func TestProcessingStateDiffs(t *testing.T) {
|
|||||||
defaultTrieDirtyCache := 256
|
defaultTrieDirtyCache := 256
|
||||||
defaultTrieTimeout := 60 * time.Minute
|
defaultTrieTimeout := 60 * time.Minute
|
||||||
cacheConfig := &CacheConfig{
|
cacheConfig := &CacheConfig{
|
||||||
Disabled: false,
|
Disabled: false,
|
||||||
TrieCleanLimit: defaultTrieCleanCache,
|
TrieCleanLimit: defaultTrieCleanCache,
|
||||||
TrieDirtyLimit: defaultTrieDirtyCache,
|
TrieDirtyLimit: defaultTrieDirtyCache,
|
||||||
TrieTimeLimit: defaultTrieTimeout,
|
TrieTimeLimit: defaultTrieTimeout,
|
||||||
ProcessingStateDiffs: true,
|
ProcessStateDiffs: true,
|
||||||
}
|
}
|
||||||
db := ethdb.NewMemDatabase()
|
db := ethdb.NewMemDatabase()
|
||||||
genesis := new(Genesis).MustCommit(db)
|
genesis := new(Genesis).MustCommit(db)
|
||||||
@ -1883,7 +1883,7 @@ func TestProcessingStateDiffs(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func containsRootHash(collection []common.Hash, hash common.Hash) bool {
|
func containsRootHash(collection []common.Hash, hash common.Hash) bool{
|
||||||
for _, n := range collection {
|
for _, n := range collection {
|
||||||
if n == hash {
|
if n == hash {
|
||||||
return true
|
return true
|
||||||
|
@ -171,7 +171,7 @@ func New(ctx *node.ServiceContext, config *Config) (*Ethereum, error) {
|
|||||||
TrieDirtyLimit: config.TrieDirtyCache,
|
TrieDirtyLimit: config.TrieDirtyCache,
|
||||||
TrieDirtyDisabled: config.NoPruning,
|
TrieDirtyDisabled: config.NoPruning,
|
||||||
TrieTimeLimit: config.TrieTimeout,
|
TrieTimeLimit: config.TrieTimeout,
|
||||||
ProcessingStateDiffs: config.StateDiff,
|
ProcessStateDiffs: config.StateDiff,
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
eth.blockchain, err = core.NewBlockChain(chainDb, cacheConfig, chainConfig, eth.engine, vmConfig, eth.shouldPreserve)
|
eth.blockchain, err = core.NewBlockChain(chainDb, cacheConfig, chainConfig, eth.engine, vmConfig, eth.shouldPreserve)
|
||||||
|
Loading…
Reference in New Issue
Block a user