By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
(Structured vs. Unstructured, Real-Time vs. Batch)
This topic covers how to choose, ingest, and process data for ML pipelines in Google Cloud. The exam tests your ability to select the right data source type (structured vs. unstructured, batch vs. real-time) and design a scalable, cost-effective strategy for training and inference.
Real-world scenario:A retail company wants to predict customer churn using: - Batch data (historical purchase records from BigQuery).- Real-time data (clickstream events from Pub/Sub).- Unstructured data (customer support call transcripts in Cloud Storage).You must decide whether to preprocess data in BigQuery (batch) or Dataflow (streaming), store features in Vertex AI Feature Store, and serve predictions via Vertex AI Prediction (online) or BigQuery ML (batch).
A gaming company wants to predict player churn using: - Historical gameplay data (structured, in BigQuery).- Real-time in-game events (semi-structured, from Pub/Sub).Which two services should they use to ingest and process this data for training?
Answer:- BigQuery (for batch historical data) + Dataflow (for real-time Pub/Sub events).Why: BigQuery handles structured batch data, while Dataflow processes streaming events.
A healthcare startup is building a real-time patient monitoring system that predicts sepsis risk. They need to: 1. Ingest vital signs from IoT devices (streaming).2. Fetch historical lab results (batch, in BigQuery).3. Serve predictions within 100ms.Which three services should they use?
Answer:- Pub/Sub (ingest streaming vitals) → Dataflow (process real-time data) → Vertex AI Feature Store (fetch historical lab results + serve features).Why: Pub/Sub + Dataflow handle streaming, while Feature Store ensures low-latency feature serving.
A retail company wants to train a recommendation model using: - Customer purchase history (structured, in BigQuery).- Product images (unstructured, in Cloud Storage).They want the cheapest and simplest solution. Which two services should they use?
Answer:- BigQuery ML (for structured purchase data) + Vertex AI Training (for image embeddings).Why: BigQuery ML is cheap for structured data, while Vertex AI handles unstructured data.
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.