Skip to content

Commit c17a0f6

Browse files
parthchandraNoeBviiryarluvaton-flarionandygrove
authored
chore: [comet-parquet-exec] merge from main 20240116 (#1299)
* feat: support array_append (#1072) * feat: support array_append * formatted code * rewrite array_append plan to match spark behaviour and fixed bug in QueryPlan serde * remove unwrap * Fix for Spark 3.3 * refactor array_append binary expression serde code * Disabled array_append test for spark 4.0+ * chore: Simplify CometShuffleMemoryAllocator to use Spark unified memory allocator (#1063) * docs: Update benchmarking.md (#1085) * feat: Require offHeap memory to be enabled (always use unified memory) (#1062) * Require offHeap memory * remove unused import * use off heap memory in stability tests * reorder imports * test: Restore one test in CometExecSuite by adding COMET_SHUFFLE_MODE config (#1087) * Add changelog for 0.4.0 (#1089) * chore: Prepare for 0.5.0 development (#1090) * Update version number for build * update docs * build: Skip installation of spark-integration and fuzz testing modules (#1091) * Add hint for finding the GPG key to use when publishing to maven (#1093) * docs: Update documentation for 0.4.0 release (#1096) * update TPC-H results * update Maven links * update benchmarking guide and add TPC-DS results * include q72 * fix: Unsigned type related bugs (#1095) ## Which issue does this PR close? Closes #1067 ## Rationale for this change Bug fix. A few expressions were failing some unsigned type related tests ## What changes are included in this PR? - For `u8`/`u16`, switched to use `generate_cast_to_signed!` in order to copy full i16/i32 width instead of padding zeros in the higher bits - `u64` becomes `Decimal(20, 0)` but there was a bug in `round()` (`>` vs `>=`) ## How are these changes tested? Put back tests for unsigned types * chore: Include first ScanExec batch in metrics (#1105) * include first batch in ScanExec metrics * record row count metric * fix regression * chore: Improve CometScan metrics (#1100) * Add native metrics for plan creation * make messages consistent * Include get_next_batch cost in metrics * formatting * fix double count of rows * chore: Add custom metric for native shuffle fetching batches from JVM (#1108) * feat: support array_insert (#1073) * Part of the implementation of array_insert * Missing methods * Working version * Reformat code * Fix code-style * Add comments about spark's implementation. * Implement negative indices + fix tests for spark < 3.4 * Fix code-style * Fix scalastyle * Fix tests for spark < 3.4 * Fixes & tests - added test for the negative index - added test for the legacy spark mode * Use assume(isSpark34Plus) in tests * Test else-branch & improve coverage * Update native/spark-expr/src/list.rs Co-authored-by: Andy Grove <[email protected]> * Fix fallback test In one case there is a zero in index and test fails due to spark error * Adjust the behaviour for the NULL case to Spark * Move the logic of type checking to the method * Fix code-style --------- Co-authored-by: Andy Grove <[email protected]> * feat: enable decimal to decimal cast of different precision and scale (#1086) * enable decimal to decimal cast of different precision and scale * add more test cases for negative scale and higher precision * add check for compatibility for decimal to decimal * fix code style * Update spark/src/main/scala/org/apache/comet/expressions/CometCast.scala Co-authored-by: Andy Grove <[email protected]> * fix the nit in comment --------- Co-authored-by: himadripal <[email protected]> Co-authored-by: Andy Grove <[email protected]> * docs: fix readme FGPA/FPGA typo (#1117) * fix: Use RDD partition index (#1112) * fix: Use RDD partition index * fix * fix * fix * fix: Various metrics bug fixes and improvements (#1111) * fix: Don't create CometScanExec for subclasses of ParquetFileFormat (#1129) * Use exact class comparison for parquet scan * Add test * Add comment * fix: Fix metrics regressions (#1132) * fix metrics issues * clippy * update tests * docs: Add more technical detail and new diagram to Comet plugin overview (#1119) * Add more technical detail and new diagram to Comet plugin overview * update diagram * add info on Arrow IPC * update diagram * update diagram * update docs * address feedback * Stop passing Java config map into native createPlan (#1101) * feat: Improve ScanExec native metrics (#1133) * save * remove shuffle jvm metric and update tuning guide * docs * add source for all ScanExecs * address feedback * address feedback * chore: Remove unused StringView struct (#1143) * Remove unused StringView struct * remove more dead code * docs: Add some documentation explaining how shuffle works (#1148) * add some notes on shuffle * reads * improve docs * test: enable more Spark 4.0 tests (#1145) ## Which issue does this PR close? Part of #372 and #551 ## Rationale for this change To be ready for Spark 4.0 ## What changes are included in this PR? This PR enables more Spark 4.0 tests that were fixed by recent changes ## How are these changes tested? tests enabled * chore: Refactor cast to use SparkCastOptions param (#1146) * Refactor cast to use SparkCastOptions param * update tests * update benches * update benches * update benches * Enable more scenarios in CometExecBenchmark. (#1151) * chore: Move more expressions from core crate to spark-expr crate (#1152) * move aggregate expressions to spark-expr crate * move more expressions * move benchmark * normalize_nan * bitwise not * comet scalar funcs * update bench imports * remove dead code (#1155) * fix: Spark 4.0-preview1 SPARK-47120 (#1156) ## Which issue does this PR close? Part of #372 and #551 ## Rationale for this change To be ready for Spark 4.0 ## What changes are included in this PR? This PR fixes the new test SPARK-47120 added in Spark 4.0 ## How are these changes tested? tests enabled * chore: Move string kernels and expressions to spark-expr crate (#1164) * Move string kernels and expressions to spark-expr crate * remove unused hash kernel * remove unused dependencies * chore: Move remaining expressions to spark-expr crate + some minor refactoring (#1165) * move CheckOverflow to spark-expr crate * move NegativeExpr to spark-expr crate * move UnboundColumn to spark-expr crate * move ExpandExec from execution::datafusion::operators to execution::operators * refactoring to remove datafusion subpackage * update imports in benches * fix * fix * chore: Add ignored tests for reading complex types from Parquet (#1167) * Add ignored tests for reading structs from Parquet * add basic map test * add tests for Map and Array * feat: Add Spark-compatible implementation of SchemaAdapterFactory (#1169) * Add Spark-compatible SchemaAdapterFactory implementation * remove prototype code * fix * refactor * implement more cast logic * implement more cast logic * add basic test * improve test * cleanup * fmt * add support for casting unsigned int to signed int * clippy * address feedback * fix test * fix: Document enabling comet explain plan usage in Spark (4.0) (#1176) * test: enabling Spark tests with offHeap requirement (#1177) ## Which issue does this PR close? ## Rationale for this change After #1062 We have not running Spark tests for native execution ## What changes are included in this PR? Removed the off heap requirement for testing ## How are these changes tested? Bringing back Spark tests for native execution * feat: Improve shuffle metrics (second attempt) (#1175) * improve shuffle metrics * docs * more metrics * refactor * address feedback * fix: stddev_pop should not directly return 0.0 when count is 1.0 (#1184) * add test * fix * fix * fix * feat: Make native shuffle compression configurable and respect `spark.shuffle.compress` (#1185) * Make shuffle compression codec and level configurable * remove lz4 references * docs * update comment * clippy * fix benches * clippy * clippy * disable test for miri * remove lz4 reference from proto * minor: move shuffle classes from common to spark (#1193) * minor: refactor decodeBatches to make private in broadcast exchange (#1195) * minor: refactor prepare_output so that it does not require an ExecutionContext (#1194) * fix: fix missing explanation for then branch in case when (#1200) * minor: remove unused source files (#1202) * chore: Upgrade to DataFusion 44.0.0-rc2 (#1154) * move aggregate expressions to spark-expr crate * move more expressions * move benchmark * normalize_nan * bitwise not * comet scalar funcs * update bench imports * save * save * save * remove unused imports * clippy * implement more hashers * implement Hash and PartialEq * implement Hash and PartialEq * implement Hash and PartialEq * benches * fix ScalarUDFImpl.return_type failure * exclude test from miri * ignore correct test * ignore another test * remove miri checks * use return_type_from_exprs * Revert "use return_type_from_exprs" This reverts commit febc1f1. * use DF main branch * hacky workaround for regression in ScalarUDFImpl.return_type * fix repo url * pin to revision * bump to latest rev * bump to latest DF rev * bump DF to rev 9f530dd * add Cargo.lock * bump DF version * no default features * Revert "remove miri checks" This reverts commit 4638fe3. * Update pin to DataFusion e99e02b9b9093ceb0c13a2dd32a2a89beba47930 * update pin * Update Cargo.toml Bump to 44.0.0-rc2 * update cargo lock * revert miri change --------- Co-authored-by: Andrew Lamb <[email protected]> * feat: add support for array_contains expression (#1163) * feat: add support for array_contains expression * test: add unit test for array_contains function * Removes unnecessary case expression for handling null values * chore: Move more expressions from core crate to spark-expr crate (#1152) * move aggregate expressions to spark-expr crate * move more expressions * move benchmark * normalize_nan * bitwise not * comet scalar funcs * update bench imports * remove dead code (#1155) * fix: Spark 4.0-preview1 SPARK-47120 (#1156) ## Which issue does this PR close? Part of #372 and #551 ## Rationale for this change To be ready for Spark 4.0 ## What changes are included in this PR? This PR fixes the new test SPARK-47120 added in Spark 4.0 ## How are these changes tested? tests enabled * chore: Move string kernels and expressions to spark-expr crate (#1164) * Move string kernels and expressions to spark-expr crate * remove unused hash kernel * remove unused dependencies * chore: Move remaining expressions to spark-expr crate + some minor refactoring (#1165) * move CheckOverflow to spark-expr crate * move NegativeExpr to spark-expr crate * move UnboundColumn to spark-expr crate * move ExpandExec from execution::datafusion::operators to execution::operators * refactoring to remove datafusion subpackage * update imports in benches * fix * fix * chore: Add ignored tests for reading complex types from Parquet (#1167) * Add ignored tests for reading structs from Parquet * add basic map test * add tests for Map and Array * feat: Add Spark-compatible implementation of SchemaAdapterFactory (#1169) * Add Spark-compatible SchemaAdapterFactory implementation * remove prototype code * fix * refactor * implement more cast logic * implement more cast logic * add basic test * improve test * cleanup * fmt * add support for casting unsigned int to signed int * clippy * address feedback * fix test * fix: Document enabling comet explain plan usage in Spark (4.0) (#1176) * test: enabling Spark tests with offHeap requirement (#1177) ## Which issue does this PR close? ## Rationale for this change After #1062 We have not running Spark tests for native execution ## What changes are included in this PR? Removed the off heap requirement for testing ## How are these changes tested? Bringing back Spark tests for native execution * feat: Improve shuffle metrics (second attempt) (#1175) * improve shuffle metrics * docs * more metrics * refactor * address feedback * fix: stddev_pop should not directly return 0.0 when count is 1.0 (#1184) * add test * fix * fix * fix * feat: Make native shuffle compression configurable and respect `spark.shuffle.compress` (#1185) * Make shuffle compression codec and level configurable * remove lz4 references * docs * update comment * clippy * fix benches * clippy * clippy * disable test for miri * remove lz4 reference from proto * minor: move shuffle classes from common to spark (#1193) * minor: refactor decodeBatches to make private in broadcast exchange (#1195) * minor: refactor prepare_output so that it does not require an ExecutionContext (#1194) * fix: fix missing explanation for then branch in case when (#1200) * minor: remove unused source files (#1202) * chore: Upgrade to DataFusion 44.0.0-rc2 (#1154) * move aggregate expressions to spark-expr crate * move more expressions * move benchmark * normalize_nan * bitwise not * comet scalar funcs * update bench imports * save * save * save * remove unused imports * clippy * implement more hashers * implement Hash and PartialEq * implement Hash and PartialEq * implement Hash and PartialEq * benches * fix ScalarUDFImpl.return_type failure * exclude test from miri * ignore correct test * ignore another test * remove miri checks * use return_type_from_exprs * Revert "use return_type_from_exprs" This reverts commit febc1f1. * use DF main branch * hacky workaround for regression in ScalarUDFImpl.return_type * fix repo url * pin to revision * bump to latest rev * bump to latest DF rev * bump DF to rev 9f530dd * add Cargo.lock * bump DF version * no default features * Revert "remove miri checks" This reverts commit 4638fe3. * Update pin to DataFusion e99e02b9b9093ceb0c13a2dd32a2a89beba47930 * update pin * Update Cargo.toml Bump to 44.0.0-rc2 * update cargo lock * revert miri change --------- Co-authored-by: Andrew Lamb <[email protected]> * update UT Signed-off-by: Dharan Aditya <[email protected]> * fix typo in UT Signed-off-by: Dharan Aditya <[email protected]> --------- Signed-off-by: Dharan Aditya <[email protected]> Co-authored-by: Andy Grove <[email protected]> Co-authored-by: KAZUYUKI TANIMURA <[email protected]> Co-authored-by: Parth Chandra <[email protected]> Co-authored-by: Liang-Chi Hsieh <[email protected]> Co-authored-by: Raz Luvaton <[email protected]> Co-authored-by: Andrew Lamb <[email protected]> * feat: Add a `spark.comet.exec.memoryPool` configuration for experimenting with various datafusion memory pool setups. (#1021) * feat: Reenable tests for filtered SMJ anti join (#1211) * feat: reenable filtered SMJ Anti join tests * feat: reenable filtered SMJ Anti join tests * feat: reenable filtered SMJ Anti join tests * feat: reenable filtered SMJ Anti join tests * Add CoalesceBatchesExec around SMJ with join filter * adding `CoalesceBatches` * adding `CoalesceBatches` * adding `CoalesceBatches` * feat: reenable filtered SMJ Anti join tests * feat: reenable filtered SMJ Anti join tests --------- Co-authored-by: Andy Grove <[email protected]> * chore: Add safety check to CometBuffer (#1050) * chore: Add safety check to CometBuffer * Add CometColumnarToRowExec * fix * fix * more * Update plan stability results * fix * fix * fix * Revert "fix" This reverts commit 9bad173. * Revert "Revert "fix"" This reverts commit d527ad1. * fix BucketedReadWithoutHiveSupportSuite * fix SparkPlanSuite * remove unreachable code (#1213) * test: Enable Comet by default except some tests in SparkSessionExtensionSuite (#1201) ## Which issue does this PR close? Part of #1197 ## Rationale for this change Since `loadCometExtension` in the diffs were not using `isCometEnabled`, `SparkSessionExtensionSuite` was not using Comet. Once enabled, some test failures discovered ## What changes are included in this PR? `loadCometExtension` now uses `isCometEnabled` that enables Comet by default Temporary ignore the failing tests in SparkSessionExtensionSuite ## How are these changes tested? existing tests * extract struct expressions to folders based on spark grouping (#1216) * chore: extract static invoke expressions to folders based on spark grouping (#1217) * extract static invoke expressions to folders based on spark grouping * Update native/spark-expr/src/static_invoke/mod.rs Co-authored-by: Andy Grove <[email protected]> --------- Co-authored-by: Andy Grove <[email protected]> * chore: Follow-on PR to fully enable onheap memory usage (#1210) * Make datafusion's native memory pool configurable * save * fix * Update memory calculation and add draft documentation * ready for review * ready for review * address feedback * Update docs/source/user-guide/tuning.md Co-authored-by: Liang-Chi Hsieh <[email protected]> * Update docs/source/user-guide/tuning.md Co-authored-by: Kristin Cowalcijk <[email protected]> * Update docs/source/user-guide/tuning.md Co-authored-by: Liang-Chi Hsieh <[email protected]> * Update docs/source/user-guide/tuning.md Co-authored-by: Liang-Chi Hsieh <[email protected]> * remove unused config --------- Co-authored-by: Kristin Cowalcijk <[email protected]> Co-authored-by: Liang-Chi Hsieh <[email protected]> * feat: Move shuffle block decompression and decoding to native code and add LZ4 & Snappy support (#1192) * Implement native decoding and decompression * revert some variable renaming for smaller diff * fix oom issues? * make NativeBatchDecoderIterator more consistent with ArrowReaderIterator * fix oom and prep for review * format * Add LZ4 support * clippy, new benchmark * rename metrics, clean up lz4 code * update test * Add support for snappy * format * change default back to lz4 * make metrics more accurate * format * clippy * use faster unsafe version of lz4_flex * Make compression codec configurable for columnar shuffle * clippy * fix bench * fmt * address feedback * address feedback * address feedback * minor code simplification * cargo fmt * overflow check * rename compression level config * address feedback * address feedback * rename constant * chore: extract agg_funcs expressions to folders based on spark grouping (#1224) * extract agg_funcs expressions to folders based on spark grouping * fix rebase * extract datetime_funcs expressions to folders based on spark grouping (#1222) Co-authored-by: Andy Grove <[email protected]> * chore: use datafusion from crates.io (#1232) * chore: extract strings file to `strings_func` like in spark grouping (#1215) * chore: extract predicate_functions expressions to folders based on spark grouping (#1218) * extract predicate_functions expressions to folders based on spark grouping * code review changes --------- Co-authored-by: Andy Grove <[email protected]> * build(deps): bump protobuf version to 3.21.12 (#1234) * extract json_funcs expressions to folders based on spark grouping (#1220) Co-authored-by: Andy Grove <[email protected]> * test: Enable shuffle by default in Spark tests (#1240) ## Which issue does this PR close? ## Rationale for this change Because `isCometShuffleEnabled` is false by default, some tests were not reached ## What changes are included in this PR? Removed `isCometShuffleEnabled` and updated spark test diff ## How are these changes tested? existing test * chore: extract hash_funcs expressions to folders based on spark grouping (#1221) * extract hash_funcs expressions to folders based on spark grouping * extract hash_funcs expressions to folders based on spark grouping --------- Co-authored-by: Andy Grove <[email protected]> * fix: Fall back to Spark for unsupported partition or sort expressions in window aggregates (#1253) * perf: Improve query planning to more reliably fall back to columnar shuffle when native shuffle is not supported (#1209) * fix regression (#1259) * feat: add support for array_remove expression (#1179) * wip: array remove * added comet expression test * updated test cases * fixed array_remove function for null values * removed commented code * remove unnecessary code * updated the test for 'array_remove' * added test for array_remove in case the input array is null * wip: case array is empty * removed test case for empty array * fix: Fall back to Spark for distinct aggregates (#1262) * fall back to Spark for distinct aggregates * update expected plans for 3.4 * update expected plans for 3.5 * force build * add comment * feat: Implement custom RecordBatch serde for shuffle for improved performance (#1190) * Implement faster encoder for shuffle blocks * make code more concise * enable fast encoding for columnar shuffle * update benches * test all int types * test float * remaining types * add Snappy and Zstd(6) back to benchmark * fix regression * Update native/core/src/execution/shuffle/codec.rs Co-authored-by: Liang-Chi Hsieh <[email protected]> * address feedback * support nullable flag --------- Co-authored-by: Liang-Chi Hsieh <[email protected]> * docs: Update TPC-H benchmark results (#1257) * fix: disable initCap by default (#1276) * fix: disable initCap by default * Update spark/src/main/scala/org/apache/comet/serde/QueryPlanSerde.scala Co-authored-by: Andy Grove <[email protected]> * address review comments --------- Co-authored-by: Andy Grove <[email protected]> * chore: Add changelog for 0.5.0 (#1278) * Add changelog * revert accidental change * move 2 items to performance section * update TPC-DS results for 0.5.0 (#1277) * fix: cast timestamp to decimal is unsupported (#1281) * fix: cast timestamp to decimal is unsupported * fix style * revert test name and mark as ignore * add comment * chore: Start 0.6.0 development (#1286) * start 0.6.0 development * update some docs * Revert a change * update CI * docs: Fix links and provide complete benchmarking scripts (#1284) * fix links and provide complete scripts * fix path * fix incorrect text * feat: Add HasRowIdMapping interface (#1288) * fix style * fix * fix for plan serialization --------- Signed-off-by: Dharan Aditya <[email protected]> Co-authored-by: NoeB <[email protected]> Co-authored-by: Liang-Chi Hsieh <[email protected]> Co-authored-by: Raz Luvaton <[email protected]> Co-authored-by: Andy Grove <[email protected]> Co-authored-by: KAZUYUKI TANIMURA <[email protected]> Co-authored-by: Sem <[email protected]> Co-authored-by: Himadri Pal <[email protected]> Co-authored-by: himadripal <[email protected]> Co-authored-by: gstvg <[email protected]> Co-authored-by: Adam Binford <[email protected]> Co-authored-by: Matt Butrovich <[email protected]> Co-authored-by: Raz Luvaton <[email protected]> Co-authored-by: Andrew Lamb <[email protected]> Co-authored-by: Dharan Aditya <[email protected]> Co-authored-by: Kristin Cowalcijk <[email protected]> Co-authored-by: Oleks V <[email protected]> Co-authored-by: Zhen Wang <[email protected]> Co-authored-by: Jagdish Parihar <[email protected]>
1 parent e4e66b1 commit c17a0f6

File tree

16 files changed

+197
-81
lines changed

16 files changed

+197
-81
lines changed

.github/workflows/spark_sql_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
with:
7272
spark-version: ${{ matrix.spark-version.full }}
7373
spark-short-version: ${{ matrix.spark-version.short }}
74-
comet-version: '0.5.0-SNAPSHOT' # TODO: get this from pom.xml
74+
comet-version: '0.6.0-SNAPSHOT' # TODO: get this from pom.xml
7575
- name: Run Spark tests
7676
run: |
7777
cd apache-spark

.github/workflows/spark_sql_test_ansi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
with:
7070
spark-version: ${{ matrix.spark-version.full }}
7171
spark-short-version: ${{ matrix.spark-version.short }}
72-
comet-version: '0.5.0-SNAPSHOT' # TODO: get this from pom.xml
72+
comet-version: '0.6.0-SNAPSHOT' # TODO: get this from pom.xml
7373
- name: Run Spark tests
7474
run: |
7575
cd apache-spark

common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ under the License.
2626
<parent>
2727
<groupId>org.apache.datafusion</groupId>
2828
<artifactId>comet-parent-spark${spark.version.short}_${scala.binary.version}</artifactId>
29-
<version>0.5.0-SNAPSHOT</version>
29+
<version>0.6.0-SNAPSHOT</version>
3030
<relativePath>../pom.xml</relativePath>
3131
</parent>
3232

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/*
2+
* Licensed to the Apache Software Foundation (ASF) under one
3+
* or more contributor license agreements. See the NOTICE file
4+
* distributed with this work for additional information
5+
* regarding copyright ownership. The ASF licenses this file
6+
* to you under the Apache License, Version 2.0 (the
7+
* "License"); you may not use this file except in compliance
8+
* with the License. You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing,
13+
* software distributed under the License is distributed on an
14+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
* KIND, either express or implied. See the License for the
16+
* specific language governing permissions and limitations
17+
* under the License.
18+
*/
19+
20+
package org.apache.comet.vector;
21+
22+
/**
23+
* An interface could be implemented by vectors that have row id mapping.
24+
*
25+
* <p>For example, Iceberg's DeleteFile has a row id mapping to map row id to position. This
26+
* interface is used to set and get the row id mapping. The row id mapping is an array of integers,
27+
* where the index is the row id and the value is the position. Here is an example:
28+
* [0,1,2,3,4,5,6,7] -- Original status of the row id mapping array Position delete 2, 6
29+
* [0,1,3,4,5,7,-,-] -- After applying position deletes [Set Num records to 6]
30+
*/
31+
public interface HasRowIdMapping {
32+
default void setRowIdMapping(int[] rowIdMapping) {
33+
throw new UnsupportedOperationException("setRowIdMapping is not supported");
34+
}
35+
36+
default int[] getRowIdMapping() {
37+
throw new UnsupportedOperationException("getRowIdMapping is not supported");
38+
}
39+
}

docs/source/contributor-guide/benchmark-results/tpc-ds.md

Lines changed: 63 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ under the License.
1919

2020
# Apache DataFusion Comet: Benchmarks Derived From TPC-DS
2121

22-
The following benchmarks were performed on a two node Kubernetes cluster with
23-
data stored locally in Parquet format on NVMe storage. Performance characteristics will vary in different environments
22+
The following benchmarks were performed on a Linux workstation with PCIe 5, AMD 7950X CPU (16 cores), 128 GB RAM, and
23+
data stored locally in Parquet format on NVMe storage. Performance characteristics will vary in different environments
2424
and we encourage you to run these benchmarks in your own environments.
2525

2626
The tracking issue for improving TPC-DS performance is [#858](https://github.com/apache/datafusion-comet/issues/858).
@@ -43,3 +43,64 @@ The raw results of these benchmarks in JSON format is available here:
4343

4444
- [Spark](0.5.0/spark-tpcds.json)
4545
- [Comet](0.5.0/comet-tpcds.json)
46+
47+
# Scripts
48+
49+
Here are the scripts that were used to generate these results.
50+
51+
## Apache Spark
52+
53+
```shell
54+
#!/bin/bash
55+
$SPARK_HOME/bin/spark-submit \
56+
--master $SPARK_MASTER \
57+
--conf spark.driver.memory=8G \
58+
--conf spark.executor.memory=32G \
59+
--conf spark.executor.instances=2 \
60+
--conf spark.executor.cores=8 \
61+
--conf spark.cores.max=16 \
62+
--conf spark.eventLog.enabled=true \
63+
tpcbench.py \
64+
--benchmark tpcds \
65+
--name spark \
66+
--data /mnt/bigdata/tpcds/sf100/ \
67+
--queries ../../tpcds/ \
68+
--output . \
69+
--iterations 5
70+
```
71+
72+
## Apache Spark + Comet
73+
74+
```shell
75+
#!/bin/bash
76+
$SPARK_HOME/bin/spark-submit \
77+
--master $SPARK_MASTER \
78+
--conf spark.driver.memory=8G \
79+
--conf spark.executor.instances=2 \
80+
--conf spark.executor.memory=16G \
81+
--conf spark.executor.cores=8 \
82+
--total-executor-cores=16 \
83+
--conf spark.eventLog.enabled=true \
84+
--conf spark.driver.maxResultSize=2G \
85+
--conf spark.memory.offHeap.enabled=true \
86+
--conf spark.memory.offHeap.size=24g \
87+
--jars $COMET_JAR \
88+
--conf spark.driver.extraClassPath=$COMET_JAR \
89+
--conf spark.executor.extraClassPath=$COMET_JAR \
90+
--conf spark.plugins=org.apache.spark.CometPlugin \
91+
--conf spark.comet.enabled=true \
92+
--conf spark.comet.cast.allowIncompatible=true \
93+
--conf spark.comet.exec.replaceSortMergeJoin=false \
94+
--conf spark.comet.exec.shuffle.enabled=true \
95+
--conf spark.comet.exec.shuffle.mode=auto \
96+
--conf spark.comet.exec.shuffle.fallbackToColumnar=true \
97+
--conf spark.comet.exec.shuffle.compression.codec=lz4 \
98+
--conf spark.shuffle.manager=org.apache.spark.sql.comet.execution.shuffle.CometShuffleManager \
99+
tpcbench.py \
100+
--name comet \
101+
--benchmark tpcds \
102+
--data /mnt/bigdata/tpcds/sf100/ \
103+
--queries ../../tpcds/ \
104+
--output . \
105+
--iterations 5
106+
```

docs/source/contributor-guide/benchmark-results/tpc-h.md

Lines changed: 67 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,84 @@ and we encourage you to run these benchmarks in your own environments.
2525

2626
The tracking issue for improving TPC-H performance is [#391](https://github.com/apache/datafusion-comet/issues/391).
2727

28-
![](../../_static/images/benchmark-results/0.5.0-SNAPSHOT-2025-01-09/tpch_allqueries.png)
28+
![](../../_static/images/benchmark-results/0.5.0/tpch_allqueries.png)
2929

3030
Here is a breakdown showing relative performance of Spark and Comet for each query.
3131

32-
![](../../_static/images/benchmark-results/0.5.0-SNAPSHOT-2025-01-09/tpch_queries_compare.png)
32+
![](../../_static/images/benchmark-results/0.5.0/tpch_queries_compare.png)
3333

3434
The following chart shows how much Comet currently accelerates each query from the benchmark in relative terms.
3535

36-
![](../../_static/images/benchmark-results/0.5.0-SNAPSHOT-2025-01-09/tpch_queries_speedup_rel.png)
36+
![](../../_static/images/benchmark-results/0.5.0/tpch_queries_speedup_rel.png)
3737

3838
The following chart shows how much Comet currently accelerates each query from the benchmark in absolute terms.
3939

40-
![](../../_static/images/benchmark-results/0.5.0-SNAPSHOT-2025-01-09/tpch_queries_speedup_abs.png)
40+
![](../../_static/images/benchmark-results/0.5.0/tpch_queries_speedup_abs.png)
4141

4242
The raw results of these benchmarks in JSON format is available here:
4343

4444
- [Spark](0.5.0/spark-tpch.json)
4545
- [Comet](0.5.0/comet-tpch.json)
46+
47+
# Scripts
48+
49+
Here are the scripts that were used to generate these results.
50+
51+
## Apache Spark
52+
53+
```shell
54+
#!/bin/bash
55+
$SPARK_HOME/bin/spark-submit \
56+
--master $SPARK_MASTER \
57+
--conf spark.driver.memory=8G \
58+
--conf spark.executor.instances=1 \
59+
--conf spark.executor.cores=8 \
60+
--conf spark.cores.max=8 \
61+
--conf spark.executor.memory=16g \
62+
--conf spark.memory.offHeap.enabled=true \
63+
--conf spark.memory.offHeap.size=16g \
64+
--conf spark.eventLog.enabled=true \
65+
tpcbench.py \
66+
--name spark \
67+
--benchmark tpch \
68+
--data /mnt/bigdata/tpch/sf100/ \
69+
--queries ../../tpch/queries \
70+
--output . \
71+
--iterations 5
72+
73+
```
74+
75+
## Apache Spark + Comet
76+
77+
```shell
78+
#!/bin/bash
79+
$SPARK_HOME/bin/spark-submit \
80+
--master $SPARK_MASTER \
81+
--conf spark.driver.memory=8G \
82+
--conf spark.executor.instances=1 \
83+
--conf spark.executor.cores=8 \
84+
--conf spark.cores.max=8 \
85+
--conf spark.executor.memory=16g \
86+
--conf spark.memory.offHeap.enabled=true \
87+
--conf spark.memory.offHeap.size=16g \
88+
--conf spark.comet.exec.replaceSortMergeJoin=true \
89+
--conf spark.eventLog.enabled=true \
90+
--jars $COMET_JAR \
91+
--driver-class-path $COMET_JAR \
92+
--conf spark.driver.extraClassPath=$COMET_JAR \
93+
--conf spark.executor.extraClassPath=$COMET_JAR \
94+
--conf spark.sql.extensions=org.apache.comet.CometSparkSessionExtensions \
95+
--conf spark.comet.enabled=true \
96+
--conf spark.comet.exec.shuffle.enabled=true \
97+
--conf spark.comet.exec.shuffle.mode=auto \
98+
--conf spark.comet.exec.shuffle.fallbackToColumnar=true \
99+
--conf spark.comet.exec.shuffle.compression.codec=lz4 \
100+
--conf spark.shuffle.manager=org.apache.spark.sql.comet.execution.shuffle.CometShuffleManager \
101+
tpcbench.py \
102+
--name comet \
103+
--benchmark tpch \
104+
--data /mnt/bigdata/tpch/sf100/ \
105+
--queries ../../tpch/queries \
106+
--output . \
107+
--iterations 5
108+
```

docs/source/contributor-guide/benchmarking.md

Lines changed: 0 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -24,62 +24,6 @@ benchmarking documentation and scripts are available in the [DataFusion Benchmar
2424

2525
We also have many micro benchmarks that can be run from an IDE located [here](https://github.com/apache/datafusion-comet/tree/main/spark/src/test/scala/org/apache/spark/sql/benchmark).
2626

27-
Here are example commands for running the benchmarks against a Spark cluster. This command will need to be
28-
adapted based on the Spark environment and location of data files.
29-
30-
These commands are intended to be run from the `runners/datafusion-comet` directory in the `datafusion-benchmarks`
31-
repository.
32-
33-
## Running Benchmarks Against Apache Spark
34-
35-
```shell
36-
$SPARK_HOME/bin/spark-submit \
37-
--master $SPARK_MASTER \
38-
--conf spark.driver.memory=8G \
39-
--conf spark.executor.instances=1 \
40-
--conf spark.executor.memory=32G \
41-
--conf spark.executor.cores=8 \
42-
--conf spark.cores.max=8 \
43-
tpcbench.py \
44-
--benchmark tpch \
45-
--data /mnt/bigdata/tpch/sf100/ \
46-
--queries ../../tpch/queries \
47-
--iterations 3
48-
```
49-
50-
## Running Benchmarks Against Apache Spark with Apache DataFusion Comet Enabled
51-
52-
### TPC-H
53-
54-
```shell
55-
$SPARK_HOME/bin/spark-submit \
56-
--master $SPARK_MASTER \
57-
--conf spark.driver.memory=8G \
58-
--conf spark.executor.instances=1 \
59-
--conf spark.executor.memory=16G \
60-
--conf spark.executor.cores=8 \
61-
--conf spark.cores.max=8 \
62-
--conf spark.memory.offHeap.enabled=true \
63-
--conf spark.memory.offHeap.size=16g \
64-
--jars $COMET_JAR \
65-
--conf spark.driver.extraClassPath=$COMET_JAR \
66-
--conf spark.executor.extraClassPath=$COMET_JAR \
67-
--conf spark.plugins=org.apache.spark.CometPlugin \
68-
--conf spark.comet.cast.allowIncompatible=true \
69-
--conf spark.comet.exec.replaceSortMergeJoin=true \
70-
--conf spark.shuffle.manager=org.apache.spark.sql.comet.execution.shuffle.CometShuffleManager \
71-
--conf spark.comet.exec.shuffle.enabled=true \
72-
--conf spark.comet.exec.shuffle.mode=auto \
73-
--conf spark.comet.exec.shuffle.enableFastEncoding=true \
74-
--conf spark.comet.exec.shuffle.fallbackToColumnar=true \
75-
--conf spark.comet.exec.shuffle.compression.codec=lz4 \
76-
tpcbench.py \
77-
--benchmark tpch \
78-
--data /mnt/bigdata/tpch/sf100/ \
79-
--queries ../../tpch/queries \
80-
--iterations 3
81-
```
82-
8327
### TPC-DS
8428

8529
For TPC-DS, use `spark.comet.exec.replaceSortMergeJoin=false`.

docs/source/contributor-guide/debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Then build the Comet as [described](https://github.com/apache/arrow-datafusion-c
130130
Start Comet with `RUST_BACKTRACE=1`
131131

132132
```console
133-
RUST_BACKTRACE=1 $SPARK_HOME/spark-shell --jars spark/target/comet-spark-spark3.4_2.12-0.5.0-SNAPSHOT.jar --conf spark.plugins=org.apache.spark.CometPlugin --conf spark.comet.enabled=true --conf spark.comet.exec.enabled=true
133+
RUST_BACKTRACE=1 $SPARK_HOME/spark-shell --jars spark/target/comet-spark-spark3.4_2.12-0.6.0-SNAPSHOT.jar --conf spark.plugins=org.apache.spark.CometPlugin --conf spark.comet.enabled=true --conf spark.comet.exec.enabled=true
134134
```
135135

136136
Get the expanded exception details

docs/source/user-guide/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ See the [Comet Kubernetes Guide](kubernetes.md) guide.
7474
Make sure `SPARK_HOME` points to the same Spark version as Comet was built for.
7575

7676
```console
77-
export COMET_JAR=spark/target/comet-spark-spark3.4_2.12-0.5.0-SNAPSHOT.jar
77+
export COMET_JAR=spark/target/comet-spark-spark3.4_2.12-0.6.0-SNAPSHOT.jar
7878

7979
$SPARK_HOME/bin/spark-shell \
8080
--jars $COMET_JAR \
@@ -130,7 +130,7 @@ explicitly contain Comet otherwise Spark may use a different class-loader for th
130130
components which will then fail at runtime. For example:
131131

132132
```
133-
--driver-class-path spark/target/comet-spark-spark3.4_2.12-0.5.0-SNAPSHOT.jar
133+
--driver-class-path spark/target/comet-spark-spark3.4_2.12-0.6.0-SNAPSHOT.jar
134134
```
135135

136136
Some cluster managers may require additional configuration, see <https://spark.apache.org/docs/latest/cluster-overview.html>

fuzz-testing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ under the License.
2525
<parent>
2626
<groupId>org.apache.datafusion</groupId>
2727
<artifactId>comet-parent-spark${spark.version.short}_${scala.binary.version}</artifactId>
28-
<version>0.5.0-SNAPSHOT</version>
28+
<version>0.6.0-SNAPSHOT</version>
2929
<relativePath>../pom.xml</relativePath>
3030
</parent>
3131

native/Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

native/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ members = ["core", "spark-expr", "proto"]
2020
resolver = "2"
2121

2222
[workspace.package]
23-
version = "0.5.0"
23+
version = "0.6.0"
2424
homepage = "https://datafusion.apache.org/comet"
2525
repository = "https://github.com/apache/datafusion-comet"
2626
authors = ["Apache DataFusion <[email protected]>"]
@@ -48,8 +48,8 @@ datafusion-expr-common = { version = "44.0.0", default-features = false }
4848
datafusion-execution = { version = "44.0.0", default-features = false }
4949
datafusion-physical-plan = { version = "44.0.0", default-features = false }
5050
datafusion-physical-expr = { version = "44.0.0", default-features = false }
51-
datafusion-comet-spark-expr = { path = "spark-expr", version = "0.5.0" }
52-
datafusion-comet-proto = { path = "proto", version = "0.5.0" }
51+
datafusion-comet-spark-expr = { path = "spark-expr", version = "0.6.0" }
52+
datafusion-comet-proto = { path = "proto", version = "0.6.0" }
5353
chrono = { version = "0.4", default-features = false, features = ["clock"] }
5454
chrono-tz = { version = "0.8" }
5555
futures = "0.3.28"

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ under the License.
3030
</parent>
3131
<groupId>org.apache.datafusion</groupId>
3232
<artifactId>comet-parent-spark${spark.version.short}_${scala.binary.version}</artifactId>
33-
<version>0.5.0-SNAPSHOT</version>
33+
<version>0.6.0-SNAPSHOT</version>
3434
<packaging>pom</packaging>
3535
<name>Comet Project Parent POM</name>
3636

spark-integration/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ under the License.
2626
<parent>
2727
<groupId>org.apache.datafusion</groupId>
2828
<artifactId>comet-parent-spark${spark.version.short}_${scala.binary.version}</artifactId>
29-
<version>0.5.0-SNAPSHOT</version>
29+
<version>0.6.0-SNAPSHOT</version>
3030
<relativePath>../pom.xml</relativePath>
3131
</parent>
3232

0 commit comments

Comments
 (0)