Tomasz Sodzawiczny
04/23/2023, 8:56 PMFlyteRemote.execute
?remote.execute(mytask, {"df": df})
but I get ValueError: Failed to find a handler for , protocol gcs, fmt ||
(my FlyteRemote is configured with data_upload_location pointing to gcs)Ketan (kumare3)
04/23/2023, 11:17 PMTomasz Sodzawiczny
04/24/2023, 7:48 AMfsspec.open()
files with the same prefix as I set as data_upload_location..outputs.get('o0').open(pd.DataFrame)
), so the gcs libs and permissions seem to be ok..execute(task, {"df": StructuredDataset(dataframe=df)})
worksKetan (kumare3)
04/25/2023, 1:20 PM