You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
to_Snowflake fires CREATE TABLE IF NOT EXISTS to create a new table to store offline features. It does not overwrite or append into the existing table. It has its benefits, but could also be very misleading since it doesn’t throw any warning, messages or anything to inform the user that it didn’t write new records to the table.
fs.get_historical_features(features=feature_service, entity_df=customers).to_snowflake(table_name='historical_features') Describe the solution you'd like
There should be a Warning message informing the user that the table with the same name exist and no action will be taken.
Describe alternatives you've considered
Couple of ways to make it work every time you need to get most recent data is to either programatically change the name and store in a new table each time or delete existing table and then recreate the table.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
to_Snowflake fires CREATE TABLE IF NOT EXISTS to create a new table to store offline features. It does not overwrite or append into the existing table. It has its benefits, but could also be very misleading since it doesn’t throw any warning, messages or anything to inform the user that it didn’t write new records to the table.
fs.get_historical_features(features=feature_service, entity_df=customers).to_snowflake(table_name='historical_features')
Describe the solution you'd like
There should be a Warning message informing the user that the table with the same name exist and no action will be taken.
Describe alternatives you've considered
Couple of ways to make it work every time you need to get most recent data is to either programatically change the name and store in a new table each time or delete existing table and then recreate the table.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: