bytewax_rerun#
A Bytewax connector for Rerun.
This modules offers a single sink: sinks.RerunSink.
This makes it easy to log messages to Rerun from Bytewax, properly handling multiple workers.
You can instantiate as many sinks as you need, and you have to pass a stream of
sinks.RerunMessages to them:
1op.output("rerun-time-sink", messages_stream, RerunSink("app_id", "recording_id"))
sinks.RerunMessage is a helper class that defines an entity that can be
logged into Rerun with all the properties needed:
1message = RerunMessage(
2 entity_path=f"metrics/{name}",
3 entity=rr.Scalar(value),
4 timeline="metrics",
5 time=seconds_since_start,
6)
The sink supports all Rerun’s operating modes: spawn, connect, save and serve.
You can use the sink to record metrics to a file for each worker, and later use the
Rerun viewer to replay all the recordings togheter.
The sink also offers a sinks.RerunSink.rerun_log decorator.
If you decorate any of your functions with this, Bytewax will log the moment the
function was called, and how long it took to run the function into a separate timeline
in Rerun.
The metrics are divided by worker, so you can see when each one is activated and for how long. You can optionally log the arguments used in each function, so you can see your items flowing through the dataflow.
To use it, instance the sink first:
1sink = RerunSink(...)
And then decorate your function:
1@sink.rerun_log()
2def my_calculation(item: int) -> int:
3 # Do something with the data
4 return item