Define and ingest features
Batch Source to Online Store
from feast import Client
from datetime import datetime, timedelta
client = Client(core_url="localhost:6565")
driver_ft = client.get_feature_table("driver_trips")
# Initialize date ranges
today = datetime.now()
yesterday = today - timedelta(1)
# Launches a short-lived job that ingests data over the provided date range.
client.start_offline_to_online_ingestion(
driver_ft, yesterday, today
)Stream Source to Online Store
Batch Source to Offline Store
Stream Source to Offline Store
Last updated
Was this helpful?