Search…
v0.22-branch
Introduction
Community
Roadmap
Changelog
Getting started
Quickstart
Concepts
Architecture
Learning by example
Third party integrations
FAQ
Tutorials
Overview
Driver ranking
Fraud detection on GCP
Real-time credit scoring on AWS
Driver stats on Snowflake
Validating historical features with Great Expectations
Using Scalable Registry
Building streaming features
How-to Guides
Running Feast with Snowflake/GCP/AWS
Running Feast in production
Deploying a Java feature server on Kubernetes
Upgrading from Feast 0.9
Adding a custom provider
Adding a new online store
Adding a new offline store
Adding or reusing tests
Reference
Data sources
Offline stores
Online stores
SQLite
Redis
Datastore
DynamoDB
PostgreSQL (contrib)
Providers
Feature repository
Feature servers
[Alpha] Web UI
[Alpha] Data quality monitoring
[Alpha] On demand feature view
[Alpha] AWS Lambda feature server
Feast CLI reference
Python API reference
Usage
Project
Contribution process
Development guide
Versioning policy
Release process
Feast 0.9 vs Feast 0.10+
Powered By
GitBook
SQLite
Description
The
SQLite
online store provides support for materializing feature values into an SQLite database for serving online features.
All feature values are stored in an on-disk SQLite database
Only the latest feature values are persisted
Example
feature_store.yaml
1
project
:
my_feature_repo
2
registry
:
data/registry.db
3
provider
:
local
4
online_store
:
5
type
:
sqlite
6
path
:
data/online_store.db
Copied!
Configuration options are available
here
.
Reference - Previous
Online stores
Next
Redis
Last modified
21h ago
Export as PDF
Copy link
Edit on GitHub
Contents
Description
Example