| /* |
| * 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. |
| */ |
| |
| if (jdkVersion != '11' && jdkVersion != '17' && jdkVersion != '21') { |
| throw new GradleException("The JMH benchmarks must be run with JDK 11 or JDK 17 or JDK 21") |
| } |
| |
| def flinkVersions = (System.getProperty("flinkVersions") != null ? System.getProperty("flinkVersions") : System.getProperty("defaultFlinkVersions")).split(",") |
| def sparkVersions = (System.getProperty("sparkVersions") != null ? System.getProperty("sparkVersions") : System.getProperty("defaultSparkVersions")).split(",") |
| def scalaVersion = System.getProperty("scalaVersion") != null ? System.getProperty("scalaVersion") : System.getProperty("defaultScalaVersion") |
| def jmhProjects = [project(":iceberg-core"), project(":iceberg-data")] |
| |
| if (flinkVersions.contains("1.18")) { |
| jmhProjects.add(project(":iceberg-flink:iceberg-flink-1.18")) |
| } |
| |
| if (flinkVersions.contains("1.19")) { |
| jmhProjects.add(project(":iceberg-flink:iceberg-flink-1.19")) |
| } |
| |
| if (flinkVersions.contains("1.20")) { |
| jmhProjects.add(project(":iceberg-flink:iceberg-flink-1.20")) |
| } |
| |
| if (sparkVersions.contains("3.3")) { |
| jmhProjects.add(project(":iceberg-spark:iceberg-spark-3.3_${scalaVersion}")) |
| jmhProjects.add(project(":iceberg-spark:iceberg-spark-extensions-3.3_${scalaVersion}")) |
| } |
| |
| if (sparkVersions.contains("3.4")) { |
| jmhProjects.add(project(":iceberg-spark:iceberg-spark-3.4_${scalaVersion}")) |
| jmhProjects.add(project(":iceberg-spark:iceberg-spark-extensions-3.4_${scalaVersion}")) |
| } |
| |
| if (sparkVersions.contains("3.5")) { |
| jmhProjects.add(project(":iceberg-spark:iceberg-spark-3.5_${scalaVersion}")) |
| jmhProjects.add(project(":iceberg-spark:iceberg-spark-extensions-3.5_${scalaVersion}")) |
| } |
| |
| configure(jmhProjects) { |
| apply plugin: 'me.champeau.jmh' |
| apply plugin: 'io.morethan.jmhreport' |
| |
| def jmhReportDir = project.property("jmhJsonOutputPath").toString().replace(".json", "") |
| mkdir(file(jmhReportDir)) |
| |
| jmh { |
| jmhVersion = '1.37' |
| failOnError = true |
| forceGC = true |
| includeTests = true |
| humanOutputFile = file(jmhOutputPath) |
| resultsFile = file(jmhJsonOutputPath) |
| resultFormat = 'JSON' |
| includes = [jmhIncludeRegex] |
| zip64 = true |
| } |
| |
| jmhReport { |
| jmhResultPath = file(jmhJsonOutputPath) |
| jmhReportOutput = file(jmhReportDir) |
| } |
| |
| jmhCompileGeneratedClasses { |
| pluginManager.withPlugin('com.palantir.baseline-error-prone') { |
| options.errorprone.enabled = false |
| } |
| } |
| |
| tasks.jmh.finalizedBy tasks.jmhReport |
| } |