<< All versions
Skill v1.0.0
currentAutomated scan100/100mkurman/zorai/feast
──Details
PublishedJuly 29, 2026 at 12:06 PM
Content Hashsha256:41494a1084e26abc...
Git SHAd0acbfaf3d62
──Files
Files (1 file, 1.3 KB)
SKILL.md1.3 KBactive
SKILL.md · 42 lines · 1.3 KB
version: "1.0.0" name: feast description: "Feast — open-source feature store. Online and offline serving, point-in-time joins, feature validation, and streaming ingestion. Standardizes feature management across training and production." tags: [feast, feature-store, mlops, feature-engineering, online-serving, infrastructure, zorai]
Overview
Feast is an open-source feature store for production ML, providing offline (batch training data via SQL queries) and online (low-latency serving via Redis, Firestore, or DynamoDB) feature retrieval with point-in-time correctness. Features are versioned, validated, and governed through a registry.
Installation
bash
uv pip install feast
Feature Definition
python
from feast import Entity, FeatureView, FileSource, ValueTypefrom datetime import timedeltadriver = Entity(name="driver_id", value_type=ValueType.INT64, description="Driver identifier")source = FileSource(path="data/driver_stats.parquet", timestamp_field="event_timestamp")feature_view = FeatureView(name="driver_hourly_stats",entities=[driver],ttl=timedelta(hours=2),source=source,)
Serve
bash
feast apply # register in registryfeast serve # online serving at localhost:6566