Product

A log you can read.

Three primitives, each doing one job. Streams hold events, schemas reject bad ones politely, and replays rebuild anything from history without touching the live path.

$ conduit streams create orders --retention 7d
Created stream orders (retention 7d, region bom)
$ conduit publish orders '{"id": 1042, "total": 1899}'
Accepted 1 event (key auto, offset 881203)
$ conduit consume orders --from earliest --limit 1
{"id": 1042, "total": 1899, "_offset": 881203}
$ 
  1. 01

    Streams

    Named append-only logs with retention windows. Keys partition; omit them and load spreads itself.

  2. 02

    Schemas

    Versioned contracts per stream. Violations land in the dead-letter stream with reasons, never a void.

  3. 03

    Replays

    Reset any sink to any offset. History rebuilds at full speed while the live tail keeps its morning.

Read the quickstartSee pricing