Use Cases
Live View
Stream job output, build logs, and other live events into S2 so dashboards can show what is happening as it happens.
The pattern here is one stream per task, job, or session. A producer appends events as they happen, and consumers read them in real-time. The same read API serves both historical and live data — when a reader catches up to the tail, the connection stays open and new records arrive as they’re appended.
In production, you’d issue a scoped access token for the user and have them read via SSE or an SDK.

