Durability
Every write to S2 is durable on object storage before it is acknowledged. This applies to both the managed service ands2-lite.
Appends execute atomically — either all the records in a batch will become durable, or none.
depends on the storage class for the stream:
- Standard — writes are durable in multiple availability zones. Ack latency within 400ms.
- Express — writes are durable across a quorum of three zonal buckets. Ack latency within 40ms.
Ordering
Records within streams are totally ordered. Every record gets a monotonically increasing sequence number. With anAppendSession (available via SDKs), you can pipeline batches with an ordering guarantee, and receive acknowledgements back in the corresponding order. If any batch fails, subsequent batches will not become durable.

