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
with s3.open(output_dataset_uri, mode="rb") as output_dataset:
200
201
output.write_parquet(output_dataset)
201
202
202
203
# returning the URI of the output for next steps to process it
203
-
return S3Object(s3=output_dataset_uri)
204
+
return S3Object(s3=output_dataset_filename)
204
205
```
205
206
206
207
The example uses Polars. If you're more into SQL you can use DuckDB, but the code will have the same structure: initialization, reading from S3, transforming, writing back to S3.
0 commit comments