nerdexam
Google

PROFESSIONAL-MACHINE-LEARNING-ENGINEER · Question #264

You work for a delivery company. You need to design a system that stores and manages features such as parcels delivered and truck locations over time. The system must retrieve the features with low…

The correct answer is B. Store features in Vertex AI Feature Store. To store and manage features for both low-latency online prediction and historical point-in-time retrieval for training with minimal effort, Vertex AI Feature Store is the optimal choice.

Submitted by parkjh· Apr 18, 2026ML pipeline operationalization

Question

You work for a delivery company. You need to design a system that stores and manages features such as parcels delivered and truck locations over time. The system must retrieve the features with low latency and feed those features into a model for online prediction. The data science team will retrieve historical data at a specific point in time for model training. You want to store the features with minimal effort. What should you do?

Options

  • AStore features in Bigtable as key/value data.
  • BStore features in Vertex AI Feature Store.
  • CStore features as a Vertex AI dataset, and use those features to train the models hosted in Vertex
  • DStore features in BigQuery timestamp partitioned tables, and use the BigQuery Storage Read API

How the community answered

(44 responses)
  • A
    14% (6)
  • B
    80% (35)
  • C
    5% (2)
  • D
    2% (1)

Why each option

To store and manage features for both low-latency online prediction and historical point-in-time retrieval for training with minimal effort, Vertex AI Feature Store is the optimal choice.

AStore features in Bigtable as key/value data.

Bigtable offers low-latency retrieval but does not natively provide the comprehensive feature management, point-in-time correctness for historical data, or integrated offline serving capabilities of a dedicated feature store.

BStore features in Vertex AI Feature Store.Correct

Vertex AI Feature Store is specifically designed to centralize and serve ML features efficiently, providing both low-latency online serving for predictions and high-throughput, point-in-time correct offline serving for model training, all with minimal management overhead.

CStore features as a Vertex AI dataset, and use those features to train the models hosted in Vertex

A Vertex AI dataset organizes data for training but is not a feature store; it lacks the specialized capabilities for low-latency online serving and precise point-in-time feature retrieval for a robust feature management system.

DStore features in BigQuery timestamp partitioned tables, and use the BigQuery Storage Read API

BigQuery with timestamp-partitioned tables can store historical data, but it is not optimized for low-latency online serving, and managing point-in-time feature consistency for training can be more complex than using a specialized feature store.

Concept tested: Vertex AI Feature Store capabilities

Source: https://cloud.google.com/vertex-ai/docs/featurestore/overview

Topics

#Feature Store#Online feature serving#Offline feature retrieval#ML data management

Community Discussion

No community discussion yet for this question.

Full PROFESSIONAL-MACHINE-LEARNING-ENGINEER Practice