Closed ebuchman closed 3 years ago
What do you mean?
Updated openning comment.
An early attempt is here: https://github.com/tendermint/tendermint/pull/633.
We don't need it for launch, its a performance optimization, we can revisit at a later time and just leave this issue open :)
There's no need to do this if Tendermint gossips erasure coded block data (https://github.com/celestiaorg/lazyledger-core/pull/434#issuecomment-869149444), as it wouldn't matter which parts you receive, as all parts work towards recovering the full block data.
Agree, I transferred the issue here as it wasn't relevant in the Tendermint repo.
When we propagate proposal blocks, we pick parts to send randomly. Instead, we should consider a "rarest first" approach where the rarest pieces on the network are gossiped first. This should improve performance and resiliency.
See eg. http://conferences.sigcomm.org/imc/2006/papers/p20-legout.pdf
I tried out an implementation last year but didnt see much on the performance improvements. We should revisit again.