Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

README.md

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