1. A continuous stream of events must be scored as they arrive, with results written out incrementally. Which deployment paradigm fits?
- A. Streaming inference (e.g., Structured Streaming applying the model to a streaming source)✓ Correct
- B. Nightly batch scoring only
- C. A static one-time prediction
- D. A SQL dashboard
Explanation
Scoring events continuously as they arrive is streaming inference, typically via Structured Streaming applying the model to a streaming DataFrame. Nightly batch (B) adds latency, a one-time prediction (C) isn't continuous, and a dashboard (D) doesn't score events.