Notice: This document is a work-in-progress for researchers and implementers.
For an introduction about DAS itself, see the DAS participation spec. This is not a pre-requisite for the network layer, but will give you valuable context.
For sampling, all nodes need to query for k
random samples each slot.
TODO: describe big picture of sampling workload size
This is a lot of work, and ideally happens at a low latency.
To achieve quick querying, the query model is changed to push the samples to listeners instead, using GossipSub. The listeners then randomly rotate their subscriptions to keep queries unpredictable. Except for a small subset of subscriptions, which will function as a backbone to keep topics more stable and allow for efficient peer discovery.
Publishing can utilize the fan-out functionality in GossipSub, and is easier to split between nodes: nodes on the horizontal networks can help by producing the same samples and fan-out publishing to their own peers.
This push model also helps to obfuscate the original source of a message: the listeners do not have to make individual queries to some identified source.
The push model does not aim to serve "historical" queries (anything older than the most recent). Historical queries are still required for the unhappy case, where messages are not pushed quick enough, and missing samples are not reconstructed by other nodes on the horizontal subnet quick enough.
The main challenge in supporting historical queries is to target the right nodes, without concentrating too many requests on a single node, or breaking the network/consensus identity separation.
On a high level, the push-model roles are divided into:
- Sources: create blobs of shard block data, and transformed into many tiny samples.
- Sinks: continuously look for samples
At full operation, the network has one proposer, per shard, per slot.
In the push-model, there are:
- Vertical subnets: Sinks can subscribe to indices of samples: there is a sample to subnet mapping.
- Horizontal subnets: Sources need to distribute samples to all vertical networks: they participate in a fan-out layer.
The shift of the distribution responsibility to a proposer can only be achieved with amplification: a regular proposer cannot reach every vertical subnet.
To publish their work, proposers propagate the shard block as a whole on a shard-block subnet.
The proposer can fan-out their work more aggressively, by using the fan-out functionality of GossipSub: it may publish to all its peers on the subnet, instead of just those in its mesh.
Peers on the horizontal subnet are expected to at least perform regular propagation of shard blocks, like participation in any other topic.
Although this may be sufficient for testnets, expect parameter changes in the spec here.
Nodes on this same subnet can replicate the sampling efficiently (including a proof for each sample), and distribute it to any vertical networks that are available to them.
Since the messages are content-addressed (instead of origin-stamped), multiple publishers of the same samples on a vertical subnet do not hurt performance, but actually improve it by shortcutting regular propagation on the vertical subnet, and thus lowering the latency to a sample.
Vertical subnets propagate the samples to every peer that is interested. These interests are randomly sampled and rotate quickly: although not perfect, sufficient to avoid any significant amount of nodes from being 100% predictable.
As soon as a sample is missing after the expected propagation time window, nodes can divert to the pull-model, or ultimately flag it as unavailable data.
Note that the vertical subnets are shared between the different shards,
and a simple hash function (shard, slot, sample_index) -> subnet_index
defines which samples go where.
This is to evenly distribute samples to subnets, even when one shard has more activity than the other.
TODO: define (shard, slot, sample_index) -> subnet_index
hash function.
To allow for subscriptions to rotate quickly and randomly, a backbone is formed to help onboard peers into other topics.
This backbone is based on a pure function of the node identity and time:
- Nodes can be found without additional discovery overhead: peers on a vertical topic can be found by searching the local peerstore for identities that hash to the desired topic(s), assuming the peerstore already has a large enough variety of peers.
- Nodes can be held accountable for contributing to the backbone: peers that participate in DAS but are not active on the appropriate backbone topics can be scored down. Note: This is experimental, DAS should be light enough for all participants to run, but scoring needs to undergo testing
A node should anticipate backbone topics to subscribe to based their own identity. These subscriptions rotate slowly, and with different offsets per node identity to avoid sudden network-wide rotations.
# TODO hash function: (node, time)->subnets
Backbone subscription work is outlined in the DAS participation spec
A node MUST maintain k
random subscriptions to topics, and rotate these according to the DAS participation spec.
If the node does not already have connected peers on the topic it needs to sample, it can search its peerstore and, if necessary, in the DHT for peers in the topic backbone.
Following the same scheme as the Phase0 gossip topics, names and payload types are:
Name | Message Type |
---|---|
das_sample_{subnet_index} |
DASSample |
Also see the Sharding general networking spec for important topics such as that of the shard-blobs and shard-headers.
Extending the regular shard_blob_{shard}
as defined in the Sharding networking specification
If participating in DAS, upon receiving a signed_blob
for the first time with a slot
not older than MAX_RESAMPLE_TIME
,
a subscriber of a shard_blob_{shard}
SHOULD reconstruct the samples and publish them to vertical subnets.
Take blob = signed_blob.blob
:
- Extend the data:
extended_data = extend_data(blob.data)
- Create samples with proofs:
samples = sample_data(blob.slot, blob.shard, extended_data)
- Fanout-publish the samples to the vertical subnets of its peers (not all vertical subnets may be reached).
The DAS participation spec outlines when and where to participate in DAS on horizontal subnets.
Shard blob samples can be verified with just a 48 byte KZG proof (commitment quotient polynomial),
against the commitment to blob polynomial, specific to that (shard, slot)
key.
The following validations MUST pass before forwarding the sample
on the vertical subnet.
- [IGNORE] The commitment for the (
sample.shard
,sample.slot
,sample.index
) tuple must be known. If not known, the client MAY queue the sample if it passes formatting conditions. - [REJECT]
sample.shard
,sample.slot
andsample.index
are hashed into asbunet_index
(TODO: define hash) which MUST match the topic{subnet_index}
parameter. - [REJECT]
sample.shard
must be within valid range:0 <= sample.shard < get_active_shard_count(state, compute_epoch_at_slot(sample.slot))
. - [REJECT]
sample.index
must be within valid range:0 <= sample.index < sample_count
, where:sample_count = (points_count + POINTS_PER_SAMPLE - 1) // POINTS_PER_SAMPLE
points_count
is the length as claimed along with the commitment, which must be smaller thanMAX_SAMPLES_PER_BLOCK
.
- [IGNORE] The
sample
is not from a future slot (with aMAXIMUM_GOSSIP_CLOCK_DISPARITY
allowance) -- i.e. validate thatsample.slot <= current_slot
. A client MAY queue future samples for processing at the appropriate slot if it passed formatting conditions. - [IGNORE] This is the first received sample with the (
sample.shard
,sample.slot
,sample.index
) key tuple. - [REJECT] As already limited by the SSZ list-limit, it is important the sample data is well-formatted and not too large.
- [REJECT] The
sample.data
MUST NOT contain any pointp >= MODULUS
. Although it is auint256
, not the full 256 bit range is valid. - [REJECT] The
sample.proof
MUST be valid:verify_sample(sample, sample_count, commitment)
Upon receiving a valid sample, it SHOULD be retained for a buffer period if the local node is part of the backbone that covers this sample. This is to serve other peers that may have missed it.
To pull samples from nodes, in case of network instability when samples are unavailable, a new query method is added to the Req-Resp domain.
This builds on top of the protocol identification and encoding spec which was introduced in the Phase0 network spec.
Note that DAS networking uses a different protocol prefix: /eth2/das/req
Protocol ID: /eth2/das/req/query/1/
Request Content:
(
sample_index: SampleIndex
)
Response Content:
(
DASSample
)
When the sample is:
- Available: respond with a
Success
result code, and the encoded sample. - Expected to be available, but not: respond with a
ResourceUnavailable
result code. - Not available, but never of interest to the node: respond with an
InvalidRequest
result code.
When the node is part of the backbone and expected to have the sample, the validity of the quest MUST be recognized with Success
or ResourceUnavailable
.