Skip to content

car-pool: Tunable straggler detection #14

Open
@QuinnWilton

Description

@QuinnWilton

This came up during an internal reactor call as a possible idea to explore once we have a query language for use as part of car-pool.

Currently, stragglers may result from false positives in the bloom filters, since we terminate graph traversal once a CID is matched by the requestor's bloom filter. However, there may be opportunity for detecting these false positives by taking advantage of the structure of the DAG. For example, imagine this DAG:

A0
|
A1
|
...
|
An-1
|
An
|
B

You can imagine a situation where a client requests A, and has B, expecting to receive CIDs A0, A1, ..., An. If An-1 is a straggler, however, the provider can detect this possibility by recognizing that An is not in the bloom filter.

Intuitively, this seems possible to me because the CIDs themselves are uniformly distributed, but the probability of having a given block is correlated with the probability of having the blocks underneath it, i.e. if it's known that some block is missing, then it's likely that any blocks referencing that block are also missing.

Activity

expede

expede commented on Nov 29, 2022

@expede
Member

That a great idea @QuinnWilton! Let's add this after the first version is out :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      car-pool: Tunable straggler detection · Issue #14 · fission-codes/spec