Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/source/contributor-guide/benchmarking_macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ cargo install tpchgen-cli
mkdir benchmark_data
cd benchmark_data
tpchgen-cli -s 100 --format=parquet
export $BENCH_DATA=`pwd`
export BENCH_DATA=`pwd`
```

Create a temp folder for spark events emitted during benchmarking
Expand Down Expand Up @@ -112,7 +112,7 @@ $SPARK_HOME/bin/spark-submit \
--conf spark.eventLog.enabled=true \
$DF_BENCH/runners/datafusion-comet/tpcbench.py \
--benchmark tpch \
--data $BENCH_DATA/tpch-data/ \
--data $BENCH_DATA/ \
--queries $DF_BENCH/tpch/queries \
--output . \
--iterations 1
Expand Down Expand Up @@ -156,7 +156,7 @@ $SPARK_HOME/bin/spark-submit \
--conf spark.comet.exec.forceShuffledHashJoin=true \
$DF_BENCH/runners/datafusion-comet/tpcbench.py \
--benchmark tpch \
--data $BENCH_DATA/tpch-data/ \
--data $BENCH_DATA/ \
--queries $DF_BENCH/tpch/queries \
--output . \
--iterations 1
Expand Down