fix(book): broken links & missing SUMMARY.md entries (#3262)

This commit is contained in:
Alexey Shekhirin
2023-06-20 13:43:34 +01:00
committed by GitHub
parent c75cacf855
commit fb710e5fdb
11 changed files with 18 additions and 37 deletions

View File

@ -23,7 +23,7 @@ The most important requirement is by far the disk, whereas CPU and RAM requireme
### Disk
There are multiple types of disks to sync Reth, with varying size requirements, depending on the [syncing mode](../run/sync-modes.md):
There are multiple types of disks to sync Reth, with varying size requirements, depending on the syncing mode:
* Archive Node: At least 2TB is required to store
* Full Node: TBD
@ -36,7 +36,7 @@ At the time of writing, syncing an Ethereum mainnet node to block 17.4M on NVMe
Most of the time during syncing is spent executing transactions, which is a single-threaded operation due to potential state dependencies of a transaction on previous ones.
As a result, the number of cores matters less, but in general higher clock speeds are better. More cores are better for parallelizable [stages](../developers/architecture.md) (like sender recovery or bodies downloading), but these stages are not the primary bottleneck for syncing.
As a result, the number of cores matters less, but in general higher clock speeds are better. More cores are better for parallelizable [stages](https://github.com/paradigmxyz/reth/blob/main/docs/crates/stages.md) (like sender recovery or bodies downloading), but these stages are not the primary bottleneck for syncing.
### Memory