How it works
A small write carries its bytes inside the tape-write instruction of an ordinary Solana transaction. When the transaction lands, the data is in the ledger, and that landing is the durability event. The track is registered and certified in the same moment: no slicing, no distribution to a spool group, no signature round to wait on. For serving, the track is assigned to a single spool, and reads flow through gateways like any other track (the write paths, what got skipped).The coded path distributes and certifies. The replay path is one transaction.
Why it’s called replay
Tapedrive is event-sourced. Every node builds its state by replaying the network’s instructions from Solana blocks, in order. For an inline track, the instruction contains the data, so replaying the chain reproduces the file itself. So a hosting node that disappears, or lies, changes nothing. Anyone replaying the ledger recovers the bytes. Replay has a second payoff, bootstrapping entire nodes, covered in the snapshots section below.Durability without fan-out
A replay-written file can be recovered from three independent places, in order of immediacy:- The spool that serves it. The fast path for reads.
- The Solana ledger. The bytes are inside a transaction; any copy of chain history has them.
- The epoch’s snapshot. Each epoch, the network bundles its replay writes into an erasure-coded system tape alongside the rest of the epoch’s record (covered next; system tapes).