Skip to content

Instantly share code, notes, and snippets.

@harshavardhana
Created August 15, 2024 19:52
Show Gist options
  • Save harshavardhana/eebf81ae605a6dbf2ed41bf68fe22fca to your computer and use it in GitHub Desktop.
Save harshavardhana/eebf81ae605a6dbf2ed41bf68fe22fca to your computer and use it in GitHub Desktop.

Previous

    Outbound
    ┌───────────────────┐             ┌────────────────┐               ┌───────────────┐                      ┌────────────────┐
    │                   │   Parr.     │                │  (http body)  │               │                      │                │
    │ Bitrot Hash       │     Write   │      Pipe      │      Read     │  HTTP buffer  │    Write (syscall)   │  TCP Buffer    │
    │ Erasure Shard     │ ──────────► │  (unbuffered)  │ ────────────► │   (64K Max)   │ ───────────────────► │    (4MB)       │
    │                   │             │                │               │  (io.Copy)    │                      │                │
    └───────────────────┘             └────────────────┘               └───────────────┘                      └────────────────┘

New

    Outbound
    ┌───────────────────┐             ┌────────────────┐               ┌───────────────┐                      ┌────────────────┐
    │                   │             │                │  (http body)  │               │                      │                │
    │ Bitrot Hash       │     Write   │  Ring Buffer   │      Read     │  HTTP buffer  │    Write (syscall)   │  TCP Buffer    │
    │ Erasure Shard     │ ──────────► │    (2MB)       │ ────────────► │   (64K Max)   │ ───────────────────► │    (4MB)       │
    │                   │             │                │               │  (io.Copy)    │                      │                │
    └───────────────────┘             └────────────────┘               └───────────────┘                      └────────────────┘

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