Production-ready examples for Featureform feature store deployments.
| Example | Featureform | Offline Store | Online Store | Use Case |
|---|---|---|---|---|
basic_local/ |
Docker | Postgres | Redis | Learning, local dev |
basic_hybrid/ |
Docker | Snowflake + S3 | Redis Cloud | Dev/test with cloud data |
NOT DONE - Pending access to enterprise FF image example/basic_cloud/ |
AWS EKS | Snowflake + S3 | Redis Cloud | Production |
cd basic_local
docker-compose up -d
pip install -r requirements.txt
featureform apply definitions.py --insecure
python serve.pyA. FF Enterprise Access B. Postgres Cloud
- Streaming
- Source data updates
- Easy versioning (switch pipelines or updating features)
feature-form-simplified/
├── basic_local/ # Fully local (Postgres + Redis)
├── basic_hybrid/ # Local Featureform + Cloud stores
├── example/basic_cloud/ # Full cloud (EKS + Snowflake + Redis)
└── README.md
- Docker
- Python 3.9+
- Featureform CLI (
pip install featureform)