Open bkchr opened 3 hours ago
- Support putting multiple blocks into one
PoV
. This will require some internal changes in Cumulus to make theParachainBlockData
generic over the number of blocks.
Will be solved by: https://github.com/paritytech/polkadot-sdk/pull/6137
This leaves an optimization around the proofs open. When putting multiple blocks into one PoV
, the blocks coming after the first block would not need to include the state data in the proof that was written by the blocks before. However, this would require a lot of changes in Substrate, especially as storage reclaim would need to be aware of this data while building the block. It is not impossible, but currently being ignored.
- The slot based collator collation task needs to be rewritten to collecting multiple blocks and put them into a
PoV
when "the time" has come.
The first part of collecting the proofs of all imported blocks is done by the following pr: https://github.com/paritytech/polkadot-sdk/pull/6481
Block times are historically bound to relay chain and how fast it can enact candidates. With async backing this time is down to 6 seconds. So, parachains have the same block time as the relay chain. However, not all kind of applications are happy with waiting 6s to have some confirmation of inclusion and access to the post state.
Parachains can actually run faster than 6 seconds. The idea there is to put multiple parachain blocks into one
PoV
. The relay chain in the end will not see that the parachain is running faster, because it is not able to look into thePoV
s. However, this is also not required. One of the major downsides of putting multiple blocks into onePoV
is that the parachain is still bound to the resource limits perPoV
. This means that with 500ms block time, the available resources need to be divided by 12 to get the available resources per parachain block. With the ideas around tx streaming etc it will be possible to use more resources per parachain block. This approach also doesn't require any changes to any Polkadot protocols.The implementation can be roughly split into the following tasks:
PoV
. This will require some internal changes in Cumulus to make theParachainBlockData
generic over the number of blocks.PoV
when "the time" has come.