From b96aed24144ca32dd8ddebca0ea78a4507378e09 Mon Sep 17 00:00:00 2001 From: Raunak Bhagat Date: Mon, 16 Dec 2024 16:29:37 -0800 Subject: [PATCH] Generate catalog off of s3 urls instead --- benchmarking/tpcds/ray_entrypoint.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/benchmarking/tpcds/ray_entrypoint.py b/benchmarking/tpcds/ray_entrypoint.py index f727ce3664..e55c1dc925 100644 --- a/benchmarking/tpcds/ray_entrypoint.py +++ b/benchmarking/tpcds/ray_entrypoint.py @@ -24,7 +24,6 @@ "store_returns", "store_sales", "time_dim", - "tpcds", "warehouse", "web_page", "web_returns", @@ -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 }