---
url: /blog/posts/2026-01-22-announcing-hosted-durable-streams.md
description: >-
  Hosted durable streams is now live on Electric Cloud—persistent, resumable
  event streams over HTTP with unlimited streams, reads, and writes.
---

We spent 3 years building a Postgres-native sync engine. Along the way, we realized the most important thing we built wasn't Postgres sync—it was the primitive underneath.

A year ago, AI apps barely worked because models weren't good enough. Claude Code refactors across fifty files and the tests still pass. Cursor is the new VSCode. The models are great.

Now infrastructure is the bottleneck—but it's not just infrastructure, it's a shift in *coordination model*. Request/response assumes two parties taking turns. Agentic apps have three agents and two users all acting at once. That requires a different primitive. And people are cobbling together Redis, WebSockets, and retry logic to build it.

So it turns out we'd built exactly the right primitive for this moment: durable streams. Persistent, resumable event streams over HTTP.

We [released the Durable Streams protocol](/blog/2025/12/09/announcing-durable-streams) in December. Today we're announcing 0.2.0—with idempotent producers and exactly-once semantics—*and* hosted durable streams on Electric Cloud.

## A new coordination model

A durable stream is an addressable, append-only log with its own URL. Clients can read from the log from any position and tail for live updates.

Existing streaming infrastructure wasn't designed for this. WebSockets and SSE are ephemeral. Kafka and Redis Streams are backend primitives—durable, but you're still building the client protocol yourself.

This is the coordination model that multi-agent and multi-user systems need. A shared log that everyone can read, resume, and react to. We call this pattern Durable Sessions—[read James' recent post about it](/blog/2026/01/12/durable-sessions-for-collaborative-ai).

Here's a demo—a multiplayer AI chat where multiple users and agents share a session with full history replay and seamless reconnection:

With 0.2.0, the protocol is mature—we're ready for more people to build with it. For the full technical details, see the [0.1.0 announcement](/blog/2025/12/09/announcing-durable-streams).

## What's shipping

Hosted durable streams is now live on [Electric Cloud](https://electric-sql.com/product/cloud), our managed sync platform. Electric Cloud also hosts [Postgres sync](/product/electric), so you can combine real-time streams with synced relational data in the same app.

* **Reads don't hit origin.** Electric Cloud's Sync CDN serves all reads. We've tested to 1M concurrent connections per stream.
* **Fast writes.** 240K writes/second for small messages, with 15-25 MB/sec sustained throughput.
* **Simple pricing.** Reads are free. 5 million writes/month free, then pay as you scale.
* **400+ conformance tests** (192 server, 212 client) ensuring protocol correctness.
* **Client libraries in 10 languages:** TypeScript, Python, Go, Rust, Java, Swift, PHP, Ruby, Elixir, and .NET—all passing full conformance.

## Get started

Sign up for [Electric Cloud](https://electric-sql.com/product/cloud) and create a service. Then create your first stream:

```bash
curl -X PUT \
  -H "Authorization: Bearer <your-token>" \
  -H "Content-Type: application/json" \
  "https://api.electric-sql.cloud/v1/stream/<your-service-id>/my-stream"
```

Write to it, read from it, tail for live updates—all plain HTTP.

**Coming soon:** Drop-in AI SDK transports for Vercel AI SDK and TanStack AI, Yjs support for collaborative editing, and an HTTP proxy that makes your existing token streams resumable with no code changes.

***

You've written the agent loop. You've debugged the WebSocket reconnection race. You've wondered if Redis PUBLISH actually delivered that message. You can stop now.

We're early—docs are sparse, guides are coming, and you'll be figuring some things out alongside us.

But the protocol is production-ready. What we're still learning is ergonomics. What does it feel like to build with this? What do you wish it did? We're all learning together how to build sophisticated, malleable, agentic applications.

[Get started](https://electric-sql.com/product/cloud) · [Discord](https://discord.electric-sql.com)
