build-feature-store
About
This skill builds a Feast feature store for centralized ML feature management, handling both batch and real-time serving with point-in-time correct joins. It's designed for ensuring training-serving consistency, reusing features across projects, and serving low-latency features. Use it when managing features for multiple models or building a feature catalog for discovery and governance.
Quick Install
Claude Code
Recommendednpx skills add pjt222/agent-almanac -a claude-code/plugin add https://github.com/pjt222/agent-almanacgit clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/build-feature-storeCopy and paste this command in Claude Code to install this skill
Documentation
Feature-Store aufbauen
See Extended Examples for complete configuration files and templates.
Implementieren centralized feature management with Feast for consistent feature serving across training and inference.
Wann verwenden
- Managing features for multiple ML models across teams
- Ensuring training-serving consistency for features
- Implementing point-in-time correct historical features
- Serving low-latency features for real-time inference
- Reusing feature definitions across projects
- Versioning feature transformations
- Building feature catalog for discovery and governance
- Preventing feature leakage in training pipelines
Eingaben
- Erforderlich: Raw Datenquelles (databases, data lakes, data warehouses)
- Erforderlich: Python environment with Feast installed
- Erforderlich: Offline store backend (BigQuery, Snowflake, Redshift, or Parquet files)
- Erforderlich: Online store backend (Redis, DynamoDB, Cassandra, or SQLite for dev)
- Optional: Feature transformation logic (Python, SQL, Spark)
- Optional: Entity key definitions (user_id, product_id, etc.)
- Optional: Kubernetes cluster for Feast server deployment
Vorgehensweise
Schritt 1: Initialize Feast Feature Repository
Einrichten Feast project structure and configure storage backends.
# Install Feast with required extras
pip install 'feast[redis,postgres]' # Add backends as needed
# Initialize new feature repository
feast init my_feature_repo
cd my_feature_repo
# Directory structure created:
# my_feature_repo/
# ├── feature_store.yaml # Configuration
# ├── features.py # Feature definitions
# └── data/ # Sample data (dev only)
Konfigurieren feature_store.yaml:
# feature_store.yaml
project: customer_analytics
registry: data/registry.db # SQLite for dev, use S3/GCS for prod
provider: local
# Offline store for training data
offline_store:
type: postgres
# ... (see EXAMPLES.md for complete implementation)
Production configuration with cloud backends:
# feature_store.prod.yaml
project: customer_analytics
registry: s3://feast-registry/prod/registry.db
provider: aws
offline_store:
type: bigquery
project_id: my-gcp-project
# ... (see EXAMPLES.md for complete implementation)
Erwartet: Feast repository initialized with config file, sample feature definitions created, offline and online stores configured, registry path accessible.
Bei Fehler: Verifizieren database/Redis Zugangsdaten (psql -U feast_user -h localhost), check connection strings format, ensure databases exist (CREATE DATABASE feature_store), verify cloud Berechtigungs for S3/BigQuery/DynamoDB, test connectivity to storage backends, check Feast version compatibility with backends (feast version).
Schritt 2: Definieren Entities and Data Sources
Erstellen entity definitions and connect to raw Datenquelles.
# entities.py
from feast import Entity, ValueType
# Define entities (primary keys for features)
customer = Entity(
name="customer",
description="Customer entity",
value_type=ValueType.INT64,
# ... (see EXAMPLES.md for complete implementation)
Definieren Datenquelles:
# data_sources.py
from feast import FileSource, BigQuerySource, RedshiftSource
from feast.data_format import ParquetFormat
from datetime import timedelta
# Development: File-based source
customer_transactions_source = FileSource(
path="data/customer_transactions.parquet",
# ... (see EXAMPLES.md for complete implementation)
Erwartet: Entity definitions reference correct ID columns, Datenquelles connect to raw data erfolgreich, event_timestamp_column exists in source data, created_timestamp_column allows point-in-time queries.
Bei Fehler: Verifizieren source data files exist and are readable, check BigQuery/Redshift Zugangsdaten and table access, ensure timestamp columns have correct format (Unix timestamp or ISO8601), verify Kafka connectivity and topic existence, check schema compatibility zwischen sources and entities.
Schritt 3: Definieren Feature Views with Transformations
Erstellen feature views that define how raw data becomes ML-ready features.
# feature_views.py
from feast import FeatureView, Field
from feast.types import Float32, Int64, String, Bool
from datetime import timedelta
from entities import customer, product
from data_sources import customer_features_source
# Simple feature view without transformations
# ... (see EXAMPLES.md for complete implementation)
Erwartet: Feature views registered erfolgreich, schema matches source data, transformations execute ohne errors, TTL values appropriate for Anwendungsfall, on-demand views combine batch and request features.
Bei Fehler: Verifizieren field names match source columns exactly, check dtype compatibility (Int64 vs Int32), ensure entity references exist, validate transformation logic with sample data, check for division by zero in calculations, verify request source schema matches inference payload.
Schritt 4: Anwenden Feature Definitions and Materialize Features
Bereitstellen feature definitions to registry and materialize to online store.
# Apply feature definitions to registry
feast apply
# Expected output:
# Created entity customer
# Created feature view customer_stats
# Created on demand feature view customer_segments
# ... (see EXAMPLES.md for complete implementation)
Programmatic materialization:
# materialize_features.py
from feast import FeatureStore
from datetime import datetime, timedelta
# Initialize feature store
fs = FeatureStore(repo_path=".")
# Materialize all feature views
# ... (see EXAMPLES.md for complete implementation)
Erwartet: Feature definitions applied to registry ohne conflicts, materialization job completes erfolgreich, online store populated with features, feature freshness innerhalb configured TTL.
Bei Fehler: Check offline store query succeeds (feast feature-views describe customer_stats), verify time range has data, ensure online store writable (Redis/DynamoDB Berechtigungs), check for duplicate feature names across views, verify entity keys exist in source data, monitor materialization job logs for errors, check disk space for local stores.
Schritt 5: Abrufen Features for Training
Abrufen point-in-time correct historical features for model training.
# get_training_data.py
from feast import FeatureStore
import pandas as pd
from datetime import datetime
# Initialize feature store
fs = FeatureStore(repo_path=".")
# ... (see EXAMPLES.md for complete implementation)
Point-in-time correctness validation:
# validate_pit_correctness.py
import pandas as pd
from datetime import datetime, timedelta
def validate_point_in_time_correctness(training_df, entity_df):
"""
Ensure features don't leak future information.
"""
# ... (see EXAMPLES.md for complete implementation)
Erwartet: Historical features retrieved erfolgreich, entity_df timestamps preserved, no NaN values for materialized features, point-in-time correctness guaranteed (no future data leakage), feature service groups features logically.
Bei Fehler: Check entity_df has required columns (entity names + event_timestamp), verify feature view names match registry, ensure offline store has data for requested time range, check for timezone mismatches (use UTC), verify entity IDs exist in source data, inspect logs for SQL query errors, validate feature view TTL covers requested time range.
Schritt 6: Serve Features for Real-Time Inference
Abrufen low-latency features from online store for model serving.
# serve_features.py
from feast import FeatureStore
import time
# Initialize feature store
fs = FeatureStore(repo_path=".")
def get_inference_features(customer_ids: list, request_data: dict = None):
# ... (see EXAMPLES.md for complete implementation)
FastAPI integration:
# api.py
from fastapi import FastAPI
from pydantic import BaseModel
from feast import FeatureStore
import mlflow
app = FastAPI()
fs = FeatureStore(repo_path=".")
# ... (see EXAMPLES.md for complete implementation)
Erwartet: Online features retrieved in <10ms for single entity, batch retrieval scales efficiently, on-demand transformations execute korrekt, request-time features merged with batch features, API responds quickly (<50ms end-to-end).
Bei Fehler: Check online store populated (run materialize if empty), verify Redis/DynamoDB connectivity and latency, ensure entity keys exist in online store, check for cold start issues (warm up cache), verify on-demand transformation logic, monitor online store memory/CPU usage, check network latency zwischen service and online store.
Validierung
- Feast repository initialized and configured
- Offline and online stores connected erfolgreich
- Entity definitions match source data
- Feature views registered in registry
- On-demand transformations execute korrekt
- Materialization completes ohne errors
- Historical features retrieved with point-in-time correctness
- Online features served with low latency (<10ms)
- Feature freshness innerhalb configured TTL
- Training-serving consistency verified
- Feature catalog accessible for discovery
Haeufige Stolperfallen
- Feature leakage: Using future data in historical features - always validate point-in-time correctness, use created_timestamp column
- Inconsistent transformations: Different logic for training vs serving - use Feast on-demand views for consistency
- Stale features: Online store not materialized regularly - set up scheduled materialization jobs (cron/Airflow)
- Missing entity keys: Entities in training set not in online store - ensure comprehensive materialization, handle missing keys gracefully
- Type mismatches: Schema types don't match source data - validate dtypes vor apply, use explicit Field definitions
- Slow online retrieval: Network latency or overloaded online store - co-locate feature store with inference service, use connection pooling
- Large feature views: Materializing millions of entities is slow - partition by date, use incremental materialization, optimize offline queries
- No feature versioning: Breaking changes affect production models - version feature views, maintain Abwaertskompatibilitaet
- Timezone confusion: Mixing timezones causes incorrect joins - always use UTC for timestamps
- Ignoring TTL: Serving expired features - set appropriate TTL values, monitor feature freshness
Verwandte Skills
track-ml-experiments- Log feature metadata in MLflow experimentsorchestrate-ml-pipeline- Planen feature materialization jobsversion-ml-data- Version raw Datenquelles for feature engineeringdeploy-ml-model-serving- Integrieren feature store with model servingserialize-data-formats- Waehlen efficient storage formats for featuresdesign-serialization-schema- Entwerfen schemas for feature sources
GitHub Repository
Related Skills
content-collections
MetaThis skill provides a production-tested setup for Content Collections, a TypeScript-first tool that transforms Markdown/MDX files into type-safe data collections with Zod validation. Use it when building blogs, documentation sites, or content-heavy Vite + React applications to ensure type safety and automatic content validation. It covers everything from Vite plugin configuration and MDX compilation to deployment optimization and schema validation.
polymarket
MetaThis skill enables developers to build applications with the Polymarket prediction markets platform, including API integration for trading and market data. It also provides real-time data streaming via WebSocket to monitor live trades and market activity. Use it for implementing trading strategies or creating tools that process live market updates.
creating-opencode-plugins
MetaThis skill helps developers create OpenCode plugins that hook into 25+ event types like commands, files, and LSP operations. It provides the plugin structure, event API specifications, and implementation patterns for JavaScript/TypeScript modules. Use it when you need to intercept, monitor, or extend the OpenCode AI assistant's lifecycle with custom event-driven logic.
sglang
MetaSGLang is a high-performance LLM serving framework that specializes in fast, structured generation for JSON, regex, and agentic workflows using its RadixAttention prefix caching. It delivers significantly faster inference, especially for tasks with repeated prefixes, making it ideal for complex, structured outputs and multi-turn conversations. Choose SGLang over alternatives like vLLM when you need constrained decoding or are building applications with extensive prefix sharing.
