Documentation Index
Fetch the complete documentation index at: https://docs.goldsky.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Publish to an S2.dev stream. S2 is a serverless HTTP API for durable, append-only streams with support for high read fanout and bottomless storage on object storage. Use it to share streams of data with front-ends and back-ends as a simpler alternative to Kafka, AWS SQS, or Google Pub/Sub.Configuration
Parameters
Must be
s2_sinkThe transform or source to read data from
Stream name to append records to.
Behavior
- Append-only: Each pipeline record is appended to the S2 stream as a single record. S2 streams are append-only by design, so updates and deletes are not supported.
- JSON encoding: Records are serialized as line-delimited JSON (one JSON object per S2 record) before being appended.
- Auto batching: Records are grouped into
AppendRecordBatchinstances up to S2’s per-batch size limits. When a batch fills up, the sink starts a new one and keeps appending. - Serverless: No infrastructure to manage. The sink talks to S2 over its HTTP API.