Skip to content

Commit

Permalink
Generate catalog off of s3 urls instead
Browse files Browse the repository at this point in the history
  • Loading branch information
raunakab committed Dec 17, 2024
1 parent 5c14913 commit b96aed2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions benchmarking/tpcds/ray_entrypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"store_returns",
"store_sales",
"time_dim",
"tpcds",
"warehouse",
"web_page",
"web_returns",
Expand All @@ -37,7 +36,7 @@ def register_catalog() -> SQLCatalog:
return SQLCatalog(
tables={
table: daft.read_parquet(
f"s3://eventual-dev-benchmarking-fixtures/uncompressed/tpcds-dbgen/2/{table}.parquet"
f"s3://eventual-dev-benchmarking-fixtures/uncompressed/tpcds-dbgen/2/{table}.parquet/"
)
for table in TABLE_NAMES
}
Expand Down

0 comments on commit b96aed2

Please sign in to comment.