Back to Rerun

Sinks

docs/content/concepts/logging-and-ingestion/sinks.md

0.31.41.7 KB
Original Source

Sinks control where your Rerun data goes. They are the output destinations for your logged data.

When you log data with Rerun, that data needs to flow somewhere, whether that's to a live viewer, a file on disk, memory, or multiple destinations at once. Sinks provide this routing layer, giving you flexible control over how and where your recordings are stored and displayed.

Available sink types

Rerun provides several built-in sink types, each designed for specific use cases:

GrpcSink

Streams data to a Rerun Viewer over gRPC. This is the most common sink for live visualization.

snippet: concepts/grpc_sink

FileSink

Writes data to .rrd files on disk.

snippet: concepts/file_sink

Multiple sinks (Tee pattern)

One of the most powerful features of Rerun's sink system is the ability to send data to multiple destinations simultaneously. This "tee" pattern lets you both visualize data live and save it to disk in a single run.

snippet: howto/set_sinks

This pattern is useful when:

  • You want to monitor a long-running process while archiving the data
  • You're debugging and want both live feedback and a recording to analyze later
  • You need to stream to multiple viewers or save to multiple files

See also