Most nodes in the cluster receive the same shred from two different nodes: parent, and the first node of their neighborhood: https://github.com/solana-labs/solana/blob/a8c695ba5/core/src/cluster_nodes.rs#L178-L197 Because of the erasure codings, half of the shreds are already redundant. So this redundant propagation path will only add extra overhead. Additionally the very first node of the broadcast tree has 2x fanout (i.e. 400 nodes) which adds too much load at one node. This commit simplifies the broadcast tree by dropping the redundant propagation path and removing the 2x fanout at root node. |
||
---|---|---|
.. | ||
benches | ||
src | ||
tests | ||
.gitignore | ||
Cargo.toml | ||
build.rs |