feast-aws-credit-scoring-tutorial icon indicating copy to clipboard operation
feast-aws-credit-scoring-tutorial copied to clipboard

RedshiftSource.__init__() got an unexpected keyword argument 'event_timestamp_column'

Open oonisim opened this issue 3 months ago • 0 comments

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)

oonisim avatar Aug 18 '25 02:08 oonisim