-
Notifications
You must be signed in to change notification settings - Fork 20.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
core/rawdb: refactor db inspector for extending multiple ancient store #25896
Merged
holiman
merged 8 commits into
ethereum:master
from
rjl493456442:delete-destructed-nodes
Oct 28, 2022
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
7ddb9f6
core: mark storage as deleted for destructed contracts
rjl493456442 a9ae72a
core: add blockchain test for failing create/destroy-case
holiman 23af804
core: simplify test
holiman 1053fad
core/state: always open storage trie from database for deletion
rjl493456442 53340c2
core/state: update method description
rjl493456442 8aa7349
core, trie: remove storage deletion logic
rjl493456442 863f611
core: remove unused codes
rjl493456442 6e6d50e
core/rawdb: address comments
rjl493456442 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
// Copyright 2022 The go-ethereum Authors | ||
// This file is part of the go-ethereum library. | ||
// | ||
// The go-ethereum library is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU Lesser General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// The go-ethereum library is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU Lesser General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Lesser General Public License | ||
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
package rawdb | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/ethereum/go-ethereum/common" | ||
"github.com/ethereum/go-ethereum/ethdb" | ||
) | ||
|
||
type tableSize struct { | ||
name string | ||
size common.StorageSize | ||
} | ||
|
||
// freezerInfo contains the basic information of the freezer. | ||
type freezerInfo struct { | ||
name string // The identifier of freezer | ||
head uint64 // The number of last stored item in the freezer | ||
tail uint64 // The number of first stored item in the freezer | ||
sizes []tableSize // The storage size per table | ||
} | ||
|
||
// count returns the number of stored items in the freezer. | ||
func (info *freezerInfo) count() uint64 { | ||
return info.head - info.tail + 1 | ||
} | ||
|
||
// size returns the storage size of the entire freezer. | ||
func (info *freezerInfo) size() common.StorageSize { | ||
var total common.StorageSize | ||
for _, table := range info.sizes { | ||
total += table.size | ||
} | ||
return total | ||
} | ||
|
||
// inspectFreezers inspects all freezers registered in the system. | ||
func inspectFreezers(db ethdb.Database) ([]freezerInfo, error) { | ||
var infos []freezerInfo | ||
for _, freezer := range freezers { | ||
switch freezer { | ||
case chainFreezerName: | ||
// Chain ancient store is a bit special. It's always opened along | ||
// with the key-value store, inspect the chain store directly. | ||
info := freezerInfo{name: freezer} | ||
// Retrieve storage size of every contained table. | ||
for table := range chainFreezerNoSnappy { | ||
size, err := db.AncientSize(table) | ||
if err != nil { | ||
return nil, err | ||
} | ||
info.sizes = append(info.sizes, tableSize{name: table, size: common.StorageSize(size)}) | ||
} | ||
// Retrieve the number of last stored item | ||
ancients, err := db.Ancients() | ||
if err != nil { | ||
return nil, err | ||
} | ||
info.head = ancients - 1 | ||
|
||
// Retrieve the number of first stored item | ||
tail, err := db.Tail() | ||
if err != nil { | ||
return nil, err | ||
} | ||
info.tail = tail | ||
infos = append(infos, info) | ||
|
||
default: | ||
return nil, fmt.Errorf("unknown freezer, supported ones: %v", freezers) | ||
} | ||
} | ||
return infos, nil | ||
} | ||
|
||
// InspectFreezerTable dumps out the index of a specific freezer table. The passed | ||
// ancient indicates the path of root ancient directory where the chain freezer can | ||
// be opened. Start and end specify the range for dumping out indexes. | ||
// Note this function can only be used for debugging purposes. | ||
func InspectFreezerTable(ancient string, freezerName string, tableName string, start, end int64) error { | ||
var ( | ||
path string | ||
tables map[string]bool | ||
) | ||
switch freezerName { | ||
case chainFreezerName: | ||
path, tables = resolveChainFreezerDir(ancient), chainFreezerNoSnappy | ||
default: | ||
return fmt.Errorf("unknown freezer, supported ones: %v", freezers) | ||
} | ||
noSnappy, exist := tables[tableName] | ||
if !exist { | ||
var names []string | ||
for name := range tables { | ||
names = append(names, name) | ||
} | ||
return fmt.Errorf("unknown table, supported ones: %v", names) | ||
} | ||
table, err := newFreezerTable(path, tableName, noSnappy, true) | ||
if err != nil { | ||
return err | ||
} | ||
table.dumpIndexStdout(start, end) | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is an interesting change, and not immediately obvious why it was needed (or correct). It would make a difference in case we're syncing, and in the old code we would create a goroutine to
waitBuild
, and in the new code we would not.Any comments about this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Previously, we will always create a waiter if "sync-style" snapshot construction is required. Although in production, sync-style generation is always disabled which means the waiter is never be created.
While if we are in sync, the snapshot construction is disabled, if we still wait the construction by waiter, then it's a deadlook.
This change ensures we only create the waiter that the construction is really initialized.