Point-in-time joins

driver_stats_fv = FeatureView(
name="driver_hourly_stats",
entities=["driver"],
features=[
Feature(name="trips_today", dtype=ValueType.INT64),
Feature(name="earnings_today", dtype=ValueType.FLOAT),
],
ttl=timedelta(hours=2),
batch_source=FileSource(
path="driver_hourly_stats.parquet"
)
)


Last updated
Was this helpful?