-
Notifications
You must be signed in to change notification settings - Fork 329
refactor: Split read benchmarks and add addParquetScanCases helper #3407
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
7735744
savE
andygrove 02e8ca4
refactor: Split read benchmarks and add addParquetScanCases helper
andygrove 75750af
feat: Native batch passthrough for native_iceberg_compat V1 scans
andygrove fef0576
Revert "feat: Native batch passthrough for native_iceberg_compat V1 s…
andygrove File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
81 changes: 81 additions & 0 deletions
81
spark/src/test/scala/org/apache/spark/sql/benchmark/CometIcebergReadBenchmark.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,81 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you under the Apache License, Version 2.0 (the | ||
| * "License"); you may not use this file except in compliance | ||
| * with the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, | ||
| * software distributed under the License is distributed on an | ||
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| * KIND, either express or implied. See the License for the | ||
| * specific language governing permissions and limitations | ||
| * under the License. | ||
| */ | ||
|
|
||
| package org.apache.spark.sql.benchmark | ||
|
|
||
| import org.apache.spark.benchmark.Benchmark | ||
| import org.apache.spark.sql.types._ | ||
|
|
||
| import org.apache.comet.CometConf | ||
|
|
||
| /** | ||
| * Benchmark to measure Comet Iceberg read performance. To run this benchmark: | ||
| * `SPARK_GENERATE_BENCHMARK_FILES=1 make | ||
| * benchmark-org.apache.spark.sql.benchmark.CometIcebergReadBenchmark` Results will be written to | ||
| * "spark/benchmarks/CometIcebergReadBenchmark-**results.txt". | ||
| */ | ||
| object CometIcebergReadBenchmark extends CometBenchmarkBase { | ||
|
|
||
| def icebergScanBenchmark(values: Int, dataType: DataType): Unit = { | ||
| val sqlBenchmark = | ||
| new Benchmark(s"SQL Single ${dataType.sql} Iceberg Column Scan", values, output = output) | ||
|
|
||
| withTempPath { dir => | ||
| withTempTable("icebergTable") { | ||
| prepareIcebergTable( | ||
| dir, | ||
| spark.sql(s"SELECT CAST(value as ${dataType.sql}) id FROM $tbl"), | ||
| "icebergTable") | ||
|
|
||
| val query = dataType match { | ||
| case BooleanType => "sum(cast(id as bigint))" | ||
| case _ => "sum(id)" | ||
| } | ||
|
|
||
| sqlBenchmark.addCase("SQL Iceberg - Spark") { _ => | ||
| withSQLConf( | ||
| "spark.memory.offHeap.enabled" -> "true", | ||
| "spark.memory.offHeap.size" -> "10g") { | ||
| spark.sql(s"select $query from icebergTable").noop() | ||
| } | ||
| } | ||
|
|
||
| sqlBenchmark.addCase("SQL Iceberg - Comet Iceberg-Rust") { _ => | ||
| withSQLConf( | ||
| CometConf.COMET_ENABLED.key -> "true", | ||
| CometConf.COMET_EXEC_ENABLED.key -> "true", | ||
| "spark.memory.offHeap.enabled" -> "true", | ||
| "spark.memory.offHeap.size" -> "10g", | ||
| CometConf.COMET_ICEBERG_NATIVE_ENABLED.key -> "true") { | ||
| spark.sql(s"select $query from icebergTable").noop() | ||
| } | ||
| } | ||
|
|
||
| sqlBenchmark.run() | ||
| } | ||
| } | ||
| } | ||
|
|
||
| override def runCometBenchmark(mainArgs: Array[String]): Unit = { | ||
| runBenchmarkWithTable("SQL Single Numeric Iceberg Column Scan", 1024 * 1024 * 128) { v => | ||
| Seq(BooleanType, ByteType, ShortType, IntegerType, LongType, FloatType, DoubleType) | ||
| .foreach(icebergScanBenchmark(v, _)) | ||
| } | ||
| } | ||
| } | ||
82 changes: 82 additions & 0 deletions
82
spark/src/test/scala/org/apache/spark/sql/benchmark/CometPartitionColumnBenchmark.scala
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,82 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you under the Apache License, Version 2.0 (the | ||
| * "License"); you may not use this file except in compliance | ||
| * with the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, | ||
| * software distributed under the License is distributed on an | ||
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| * KIND, either express or implied. See the License for the | ||
| * specific language governing permissions and limitations | ||
| * under the License. | ||
| */ | ||
|
|
||
| package org.apache.spark.sql.benchmark | ||
|
|
||
| import org.apache.spark.benchmark.Benchmark | ||
|
|
||
| /** | ||
| * Benchmark to measure partition column scan performance. This exercises the CometConstantVector | ||
| * path where constant columns are exported as 1-element Arrow arrays and expanded on the native | ||
| * side. | ||
| * | ||
| * To run this benchmark: | ||
| * {{{ | ||
| * SPARK_GENERATE_BENCHMARK_FILES=1 make \ | ||
| * benchmark-org.apache.spark.sql.benchmark.CometPartitionColumnBenchmark | ||
| * }}} | ||
| * | ||
| * Results will be written to "spark/benchmarks/CometPartitionColumnBenchmark-**results.txt". | ||
| */ | ||
| object CometPartitionColumnBenchmark extends CometBenchmarkBase { | ||
|
|
||
| def partitionColumnScanBenchmark(values: Int, numPartitionCols: Int): Unit = { | ||
| val sqlBenchmark = new Benchmark( | ||
| s"Partitioned Scan with $numPartitionCols partition column(s)", | ||
| values, | ||
| output = output) | ||
|
|
||
| withTempPath { dir => | ||
| withTempTable("parquetV1Table") { | ||
| val partCols = | ||
| (1 to numPartitionCols).map(i => s"'part$i' as p$i").mkString(", ") | ||
| val partNames = (1 to numPartitionCols).map(i => s"p$i") | ||
| val df = spark.sql(s"SELECT value as id, $partCols FROM $tbl") | ||
| val parquetDir = dir.getCanonicalPath + "/parquetV1" | ||
| df.write | ||
| .partitionBy(partNames: _*) | ||
| .mode("overwrite") | ||
| .option("compression", "snappy") | ||
| .parquet(parquetDir) | ||
| spark.read.parquet(parquetDir).createOrReplaceTempView("parquetV1Table") | ||
|
|
||
| addParquetScanCases(sqlBenchmark, "select sum(id) from parquetV1Table") | ||
|
|
||
| // Also benchmark reading partition columns themselves | ||
| val partSumExpr = | ||
| (1 to numPartitionCols).map(i => s"sum(length(p$i))").mkString(", ") | ||
|
|
||
| addParquetScanCases( | ||
| sqlBenchmark, | ||
| s"select $partSumExpr from parquetV1Table", | ||
| caseSuffix = "partition cols") | ||
|
|
||
| sqlBenchmark.run() | ||
| } | ||
| } | ||
| } | ||
|
|
||
| override def runCometBenchmark(mainArgs: Array[String]): Unit = { | ||
| runBenchmarkWithTable("Partitioned Column Scan", 1024 * 1024 * 15) { v => | ||
| for (numPartCols <- List(1, 5)) { | ||
| partitionColumnScanBenchmark(v, numPartCols) | ||
| } | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can just say Comet, I guess.