feat: Set optional full-scan for deletion by j1wonpark · Pull Request #4189 · feast-dev/feast
full_scan_for_deletion: Optional[bool] = True """(Optional) whether to scan for deletion of features"""
class RedisOnlineStore(OnlineStore): """
assert isinstance(online_store_config, RedisOnlineStoreConfig)
for table in tables_to_delete: self.delete_table(config, table) if online_store_config.full_scan_for_deletion: for table in tables_to_delete: self.delete_table(config, table)
def teardown( self,