- Feb 04, 2020
-
-
Martin Holst Swende authored
* trie: make hasher parallel when number of changes are large * trie: remove unused field dirtyCount * trie: rename unhashedCount/unhashed
-
- Feb 03, 2020
-
-
Martin Holst Swende authored
* trie: make db insert use size instead of full data * core/state: minor optimization in state onleaf allocation * trie: implement dedicated committer and hasher * trie: use dedicated committer/hasher * trie: linter nitpicks * core/state, trie: avoid unnecessary storage trie load+commit * trie: review feedback, mainly docs + minor changes * trie: start deprecating old hasher * trie: fix misspell+lint * trie: deprecate hasher.go, make proof framework use new hasher * trie: rename pure_committer/hasher to committer/hasher * trie, core/state: fix review concerns * trie: more review concerns * trie: make commit collapse into hashnode, don't touch dirtyness * trie: goimports fixes * trie: remove panics
-
- Jan 17, 2020
-
-
Martin Holst Swende authored
* trie/tests: add benchmarks and update trie tests * trie: update benchmark tests * trie: utilize callbacks instead of amassing lists of hashes in database ref/unref * trie: replace remaining non-callback based accesses
-
- Jan 07, 2020
-
-
me020523 authored
* add node.go unit test file node_test.go * add node_test.go file license and rollback trie_test.go * fix unused variable v * trie: fix license year Co-authored-by:
Péter Szilágyi <peterke@gmail.com>
-
- Dec 02, 2019
-
-
Péter Szilágyi authored
-
- Nov 28, 2019
-
-
Gary Rong authored
-
- Nov 25, 2019
-
-
Gary Rong authored
-
- Nov 22, 2019
-
-
Felix Lange authored
-
- Oct 28, 2019
-
-
Gary Rong authored
When we flush a batch of trie nodes into database during the state sync, we should guarantee that all children should be flushed before parent. Actually the trie nodes commit order is strict by: children -> parent. But when we flush all ready nodes into db, we don't need the order anymore since (1) they are all ready nodes (no more dependency) (2) underlying database provides write atomicity
-
- Aug 12, 2019
-
-
Gary Rong authored
* core, trie: decode the value for storage dump * core/state: address comment
-
- Jul 22, 2019
-
-
Christian Muehlhaeuser authored
No need to convert these types.
-
- Jul 05, 2019
-
-
Guillaume Ballet authored
-
- May 16, 2019
-
-
Péter Szilágyi authored
-
Gary Rong authored
* all: freezer style syncing core, eth, les, light: clean up freezer relative APIs core, eth, les, trie, ethdb, light: clean a bit core, eth, les, light: add unit tests core, light: rewrite setHead function core, eth: fix downloader unit tests core: add receipt chain insertion test core: use constant instead of hardcoding table name core: fix rollback core: fix setHead core/rawdb: remove canonical block first and then iterate side chain core/rawdb, ethdb: add hasAncient interface eth/downloader: calculate ancient limit via cht first core, eth, ethdb: lots of fixes * eth/downloader: print ancient disable log only for fast sync
-
- May 13, 2019
-
-
Péter Szilágyi authored
* core, eth, trie: bloom filter for trie node dedup during fast sync * eth/downloader, trie: address review comments * core, ethdb, trie: restart fast-sync bloom construction now and again * eth/downloader: initialize fast sync bloom on startup * eth: reenable eth/62 until we properly remove it
-
- May 07, 2019
-
-
Gary Rong authored
* trie: fix merkle proof * trie: use hasher instead of allocate keccack256 every time * trie: add comments
-
- Apr 12, 2019
-
-
Péter Szilágyi authored
-
- Apr 05, 2019
-
-
Péter Szilágyi authored
-
- Mar 26, 2019
-
-
Martin Holst Swende authored
This PR is a more advanced form of the dirty-to-clean cacher (#18995), where we reuse previous database write batches as datasets to uncache, saving a dirty-trie-iteration and a dirty-trie-rlp-reencoding per block.
-
- Mar 22, 2019
-
-
Martin Holst Swende authored
* trie: disable fnv64a hashing of hashes for bigcache * trie/database: add very important period
-
- Mar 14, 2019
-
-
Péter Szilágyi authored
* cmd, core, eth, trie: get rid of trie cache generations * core, trie: get rid of remainder of cache gen boilerplate
-
- Mar 12, 2019
-
-
Péter Szilágyi authored
-
- Mar 06, 2019
-
-
Péter Szilágyi authored
-
- Feb 19, 2019
-
-
Matthew Halpern authored
-
- Feb 16, 2019
-
-
Martin Holst Swende authored
-
- Feb 04, 2019
-
-
HackyMiner authored
-
- Jan 04, 2019
-
-
Dave McGregor authored
-
- Nov 22, 2018
-
-
Martin Holst Swende authored
trie/database: fix overflow in parent tracking
-
- Nov 16, 2018
-
-
Péter Szilágyi authored
-
Łukasz Kurowski authored
* trie: return hasher to pool * trie: minor code formatting fix
-
- Nov 15, 2018
-
-
Péter Szilágyi authored
-
- Oct 08, 2018
-
-
Péter Szilágyi authored
-
- Sep 03, 2018
-
-
Wenbiao Zheng authored
-
- Aug 24, 2018
-
-
Mymskmkt authored
-
- Aug 09, 2018
-
-
Péter Szilágyi authored
-
- Aug 08, 2018
-
-
Mymskmkt authored
-
- Aug 07, 2018
-
-
Oleg Kovalov authored
-
- Jul 30, 2018
-
-
Péter Szilágyi authored
-
- Jul 02, 2018
-
-
Péter Szilágyi authored
-
- Jun 21, 2018
-
-
Péter Szilágyi authored
The current trie memory database/cache that we do pruning on stores trie nodes as binary rlp encoded blobs, and also stores the node relationships/references for GC purposes. However, most of the trie nodes (everything apart from a value node) is in essence just a collection of references. This PR switches out the RLP encoded trie blobs with the collapsed-but-not-serialized trie nodes. This permits most of the references to be recovered from within the node data structure, avoiding the need to track them a second time (expensive memory wise).
-