Fabric RTI 101: Joining with Other Data Sets
The Join operation allows you to bring together data from multiple sources in real time — much like performing a SQL join on continuously arriving data.
Imagine you have one stream of telemetry from IoT devices and another stream of configuration updates.
By joining them on a common key, such as a device ID, you can enrich your telemetry with configuration or location context in real time.
Eventstream supports different types of joins, including both inner joins (matching only overlapping records), and outer joins (keeping all events from one stream, even when there’s no match).
2026-04-07

