Google Cloud Professional Machine Learning Engineer — Question 78

You need to design an architecture that serves asynchronous predictions to determine whether a particular mission-critical machine part will fail. Your system collects data from multiple sensors from the machine. You want to build a model that will predict a failure in the next N minutes, given the average of each sensor’s data from the past 12 hours. How should you design the architecture?

Answer options

Correct answer: B

Explanation

Option B is correct because it allows for real-time processing of sensor events, enabling timely predictions and subsequent actions. The other options involve batch processing, which is not suitable for immediate predictions required for monitoring machine failures, as they introduce delays in receiving results.