From 84409f9aea40718c5af1e00625cf20676622246d Mon Sep 17 00:00:00 2001 From: Danny Chiao Date: Sun, 6 Mar 2022 04:06:59 -0500 Subject: [PATCH] fix: Fixing Spark template to include source name Signed-off-by: Danny Chiao --- sdk/python/feast/templates/spark/example.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sdk/python/feast/templates/spark/example.py b/sdk/python/feast/templates/spark/example.py index ddda73b787..11a25e1be2 100644 --- a/sdk/python/feast/templates/spark/example.py +++ b/sdk/python/feast/templates/spark/example.py @@ -23,12 +23,14 @@ # Sources driver_hourly_stats = SparkSource( + name="driver_hourly_stats", path=f"{CURRENT_DIR}/data/driver_hourly_stats", file_format="parquet", event_timestamp_column="event_timestamp", created_timestamp_column="created", ) customer_daily_profile = SparkSource( + name="customer_daily_profile", path=f"{CURRENT_DIR}/data/customer_daily_profile", file_format="parquet", event_timestamp_column="event_timestamp",