A logistics team ingests vehicle telemetry through a Microsoft Fabric Eventstream. Downstream, a nightly Spark job in a Lakehouse aggregates the day's telemetry into a Delta gold table. The streaming events do not need sub-second queries, but they must be durably landed in open Delta format so the batch job can read a full day at a time. Which Eventstream destination best lands the stream for this downstream batch?
- ASend the Eventstream to an Eventhouse destination so the events are indexed in a KQL database, then have the nightly Spark job query the KQL database for each day.
- BSend the Eventstream to a Lakehouse destination so events are written as Delta files in OneLake, ready for the nightly Spark job to read a full day in batch. Correct
- CSend the Eventstream to a Microsoft Fabric Activator destination so each event triggers an action, then collect the triggered actions into the Delta gold table nightly.
- DSend the Eventstream to a custom endpoint destination so an external service receives the events, then re-ingest them later from that service into the Delta gold table.
Why A is wrong: An Eventhouse is the right choice when sub-second queries are needed, but the scenario explicitly does not require them; indexing the stream for low-latency querying adds cost and is a poor source shape for a full-day Spark batch read.
Why B is correct: A Lakehouse destination lands the stream as Delta files in OneLake in open format, which is exactly what a nightly Spark batch job needs to read a whole day; durability and open format are met without paying for low-latency query indexing.
Why C is wrong: Activator reacts to event conditions by firing alerts or actions; it is not a durable landing store for the raw stream, so it cannot supply a full day of telemetry in Delta format to the batch job.
Why D is wrong: A custom endpoint forwards events out of Fabric to another consumer, adding a round trip and an external dependency; it does not durably land the data in OneLake, so it is the wrong fit for a Fabric-native batch read.