Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.06 KB

File metadata and controls

41 lines (32 loc) · 1.06 KB

Feast Ray Template

This template demonstrates Feast's Ray integration, showcasing both the Ray Offline Store and Ray Compute Engine capabilities for distributed feature processing.

What's Included

ray_template/
├── feature_repo/
│   ├── feature_store.yaml      # Ray offline store + compute engine config
│   ├── feature_definitions.py  # Feature definitions with Ray optimizations
│   ├── test_workflow.py        # Demo script showing Ray capabilities
│   └── data/                   # Sample datasets (generated by bootstrap)
│       ├── driver_stats.parquet
│       └── customer_daily_profile.parquet
└── README.md                   # This file

Getting Started

  1. Initialize the template:

    feast init -t ray my_ray_project
    cd my_ray_project/feature_repo
  2. Install Ray dependencies:

    pip install feast[ray]
  3. Apply feature definitions:

    feast apply
  4. Run the demo:

    python test_workflow.py