0
0
MLOpsdevops~20 mins

Online vs offline feature stores in MLOps - Practice Questions

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Feature Store Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
1:30remaining
Primary purpose of an online feature store
What is the main purpose of an online feature store in a machine learning system?
ATo store historical feature data for batch training jobs
BTo provide real-time feature data for low-latency model predictions
CTo archive raw data for long-term storage
DTo manage model versioning and deployment
Attempts:
2 left
💡 Hint
Think about where features are needed instantly during prediction.
🧠 Conceptual
intermediate
1:30remaining
Key difference between online and offline feature stores
Which statement best describes the key difference between online and offline feature stores?
AOnline stores are used only for data backup; offline stores are for real-time serving
BOffline stores require low latency; online stores tolerate high latency
COffline stores provide features for training; online stores provide features for serving
DOnline stores handle batch data; offline stores handle streaming data
Attempts:
2 left
💡 Hint
Consider the use case of training versus prediction.
💻 Command Output
advanced
2:00remaining
Latency difference in feature retrieval
Given a feature store setup, which option best describes the expected latency difference when retrieving features from online vs offline stores?
AOnline store retrieval latency is in milliseconds; offline store retrieval latency is in minutes or hours
BOffline store retrieval latency is in milliseconds; online store retrieval latency is in minutes or hours
CBoth online and offline stores have similar latency in seconds
DOnline store retrieval latency is in hours; offline store retrieval latency is in milliseconds
Attempts:
2 left
💡 Hint
Think about real-time vs batch processing speeds.
Best Practice
advanced
2:00remaining
Best practice for feature consistency
What is a best practice to ensure feature consistency between online and offline feature stores?
AUse the same feature computation logic and data sources for both stores
BUpdate online store features weekly to match offline store
COnly use offline store features for both training and serving
DCompute features independently in online and offline stores to optimize speed
Attempts:
2 left
💡 Hint
Consistency means features should be the same regardless of source.
Troubleshoot
expert
2:30remaining
Troubleshooting stale features in online store
If a model serving system returns poor predictions due to stale features, which is the most likely cause related to the online feature store?
AThe feature computation logic differs between training and serving
BThe offline feature store has missing historical data
CThe model was trained on outdated offline features
DThe online feature store is not updating features frequently enough
Attempts:
2 left
💡 Hint
Focus on the freshness of features during serving.