Skip to content

Get Started with Real-Time Intelligence in Microsoft Fabric

Get Started with Real-Time Intelligence in Microsoft Fabric

Source

Summary

This module introduces Real-Time Intelligence in Microsoft Fabric, explaining the architecture of Eventhouses, KQL Databases, Real-Time Dashboards, and Eventstreams for sub-second streaming ingestion and analytics.

Core Architectural Concepts

1. The Real-Time Hub & Eventhouse

  • Eventhouse: Scalable workspace engine tailored for handling high-volume, continuous streams of unstructured and semi-structured time-series/log data with sub-second indexing.
  • KQL Database: The relational storage container inside an Eventhouse powered by the Azure Data Explorer / Kusto engine.

2. High-Yield KQL Query Operations

// Filter and aggregate telematics stream
VehicleTelemetry
| where Timestamp >= ago(1h) and Speed > 80
| summarize AvgSpeed = avg(Speed), MaxTemp = max(EngineTemperature) by VehicleId, bin(Timestamp, 5m)
| render timechart

3. Data Ingestion Pathways

  1. Streaming Ingestion: Near-instantaneous ingestion with continuous indexing (ideal for alerts and live dashboarding).
  2. Batch / Queued Ingestion: High-throughput file-based ingestion optimized for bulk log uploads.