feast-aws-credit-scoring-tutorial
feast-aws-credit-scoring-tutorial copied to clipboard
RedshiftSource.__init__() got an unexpected keyword argument 'event_timestamp_column'
There is no more argument event_timestamp_column in RedshiftSource as in the latest FEAST.
Hence, feast apply step fails at feature_repo/features.py.
credit_history_source = RedshiftSource(
query="SELECT * FROM spectrum.credit_history",
# API changed
# RedshiftSource.__init__() got an unexpected keyword argument 'event_timestamp_column'
# event_timestamp_column="event_timestamp",
timestamp_field="event_timestamp", # <-----
created_timestamp_column="created_timestamp",
)
Environment
FEAST 0.51 Python 3.11 MacOS (Apple Silicon)