3636 "name": "TPC-H SF=1 on S3",
3737 "local_dir": "vortex-bench/data/tpch/1.0",
3838 "remote_storage": "s3://vortex-bench-dev-eu/${{github.ref_name}}/${{github.run_id}}/tpch/1.0/",
39- "targets": "datafusion:parquet,datafusion:vortex,datafusion:vortex-compact, duckdb:parquet,duckdb:vortex,duckdb:vortex-compact ",
39+ "targets": "duckdb:parquet",
4040 "scale_factor": "1.0"
4141 },
4242 {
5252 "name": "TPC-H SF=10 on S3",
5353 "local_dir": "vortex-bench/data/tpch/10.0",
5454 "remote_storage": "s3://vortex-bench-dev-eu/${{github.ref_name}}/${{github.run_id}}/tpch/10.0/",
55- "targets": "datafusion:parquet,datafusion:vortex,datafusion:vortex-compact,duckdb:parquet,duckdb:vortex, duckdb:vortex-compact",
55+ "targets": "duckdb:vortex-compact",
5656 "scale_factor": "10.0"
5757 },
5858 {
8282 "name": "FineWeb S3",
8383 "local_dir": "vortex-bench/data/fineweb",
8484 "remote_storage": "s3://vortex-bench-dev-eu/${{github.ref_name}}/${{github.run_id}}/fineweb/",
85- "targets": "datafusion:parquet,datafusion:vortex,datafusion:vortex-compact, duckdb:parquet,duckdb: vortex,duckdb:vortex-compact ",
85+ "targets": "duckdb:vortex",
8686 "scale_factor": "100"
8787 },
8888 ]
@@ -248,7 +248,6 @@ jobs:
248248 OTEL_RESOURCE_ATTRIBUTES : " bench-name=${{ matrix.id }}"
249249 run : |
250250 # Extract formats for each engine
251- df_formats=$(echo "${{ matrix.targets }}" | tr ',' '\n' | grep '^datafusion:' | sed 's/datafusion://' | tr '\n' ',' | sed 's/,$//')
252251 ddb_formats=$(echo "${{ matrix.targets }}" | tr ',' '\n' | grep '^duckdb:' | sed 's/duckdb://' | tr '\n' ',' | sed 's/,$//')
253252
254253 # Build options string if scale_factor is set
@@ -259,18 +258,6 @@ jobs:
259258
260259 touch results.json
261260
262- # Run df-bench with remote storage
263- if [ -n "$df_formats" ]; then
264- echo "Running DataFusion formats: $df_formats"
265- target/release_debug/df-bench ${{ matrix.subcommand }} \
266- -d gh-json \
267- --formats "$df_formats" \
268- $opts \
269- -o df-results.json
270-
271- cat df-results.json >> results.json
272- fi
273-
274261 # Run ddb-bench with remote storage
275262 if [ -n "$ddb_formats" ]; then
276263 echo "Running DuckDB formats: $ddb_formats"
0 commit comments