2016-06-15 10:48:02 -04:00
|
|
|
/*
|
|
|
|
* Licensed to Elasticsearch under one or more contributor
|
|
|
|
* license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright
|
|
|
|
* ownership. Elasticsearch 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
maven {
|
|
|
|
url 'https://plugins.gradle.org/m2/'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
2018-05-10 05:49:41 -04:00
|
|
|
classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4'
|
2016-06-15 10:48:02 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'elasticsearch.build'
|
2018-05-10 05:49:41 -04:00
|
|
|
|
|
|
|
// order of this seciont matters, see: https://github.com/johnrengelman/shadow/issues/336
|
|
|
|
apply plugin: 'application' // have the shadow plugin provide the runShadow task
|
|
|
|
mainClassName = 'org.openjdk.jmh.Main'
|
|
|
|
apply plugin: 'com.github.johnrengelman.shadow' // build an uberjar with all benchmarks
|
2016-06-15 10:48:02 -04:00
|
|
|
|
2017-06-16 17:16:03 -04:00
|
|
|
// Not published so no need to assemble
|
|
|
|
tasks.remove(assemble)
|
|
|
|
build.dependsOn.remove('assemble')
|
2017-06-16 11:46:34 -04:00
|
|
|
|
2016-06-15 10:48:02 -04:00
|
|
|
archivesBaseName = 'elasticsearch-benchmarks'
|
|
|
|
|
Build: Rework integ test setup and shutdown to ensure stop runs when desired (#23304)
Gradle's finalizedBy on tasks only ensures one task runs after another,
but not immediately after. This is problematic for our integration tests
since it allows multiple project's integ test clusters to be
simultaneously. While this has not been a problem thus far (gradle 2.13
happened to keep the finalizedBy tasks close enough that no clusters
were running in parallel), with gradle 3.3 the task graph generation has
changed, and numerous clusters may be running simultaneously, causing
memory pressure, and thus generally slower tests, or even failure if the
system has a limited amount of memory (eg in a vagrant host).
This commit reworks how integ tests are configured. It adds an
`integTestCluster` extension to gradle which is equivalent to the current
`integTest.cluster` and moves the rest test runner task to
`integTestRunner`. The `integTest` task is then just a dummy task,
which depends on the cluster runner task, as well as the cluster stop
task. This means running `integTest` in one project will both run the
rest tests, and shut down the cluster, before running `integTest` in
another project.
2017-02-22 15:43:15 -05:00
|
|
|
test.enabled = false
|
2016-06-15 10:48:02 -04:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile("org.elasticsearch:elasticsearch:${version}") {
|
2016-12-19 04:02:28 -05:00
|
|
|
// JMH ships with the conflicting version 4.6. This prevents us from using jopt-simple in benchmarks (which should be ok) but allows
|
|
|
|
// us to invoke the JMH uberjar as usual.
|
2016-06-15 10:48:02 -04:00
|
|
|
exclude group: 'net.sf.jopt-simple', module: 'jopt-simple'
|
|
|
|
}
|
|
|
|
compile "org.openjdk.jmh:jmh-core:$versions.jmh"
|
|
|
|
compile "org.openjdk.jmh:jmh-generator-annprocess:$versions.jmh"
|
2016-06-15 10:54:54 -04:00
|
|
|
// Dependencies of JMH
|
2016-06-15 10:48:02 -04:00
|
|
|
runtime 'net.sf.jopt-simple:jopt-simple:4.6'
|
|
|
|
runtime 'org.apache.commons:commons-math3:3.2'
|
|
|
|
}
|
|
|
|
|
2017-01-06 10:46:26 -05:00
|
|
|
compileJava.options.compilerArgs << "-Xlint:-cast,-deprecation,-rawtypes,-try,-unchecked,-processing"
|
2016-08-23 09:15:22 -04:00
|
|
|
// enable the JMH's BenchmarkProcessor to generate the final benchmark classes
|
|
|
|
// needs to be added separately otherwise Gradle will quote it and javac will fail
|
|
|
|
compileJava.options.compilerArgs.addAll(["-processor", "org.openjdk.jmh.generators.BenchmarkProcessor"])
|
2016-06-15 10:48:02 -04:00
|
|
|
|
|
|
|
forbiddenApis {
|
|
|
|
// classes generated by JMH can use all sorts of forbidden APIs but we have no influence at all and cannot exclude these classes
|
|
|
|
ignoreFailures = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// No licenses for our benchmark deps (we don't ship benchmarks)
|
|
|
|
dependencyLicenses.enabled = false
|
2017-12-26 04:51:47 -05:00
|
|
|
dependenciesInfo.enabled = false
|
2016-06-15 10:48:02 -04:00
|
|
|
|
|
|
|
thirdPartyAudit.excludes = [
|
|
|
|
// these classes intentionally use JDK internal API (and this is ok since the project is maintained by Oracle employees)
|
|
|
|
'org.openjdk.jmh.profile.AbstractHotspotProfiler',
|
|
|
|
'org.openjdk.jmh.profile.HotspotThreadProfiler',
|
|
|
|
'org.openjdk.jmh.profile.HotspotClassloadingProfiler',
|
|
|
|
'org.openjdk.jmh.profile.HotspotCompilationProfiler',
|
|
|
|
'org.openjdk.jmh.profile.HotspotMemoryProfiler',
|
|
|
|
'org.openjdk.jmh.profile.HotspotRuntimeProfiler',
|
|
|
|
'org.openjdk.jmh.util.Utils'
|
|
|
|
]
|
|
|
|
|
|
|
|
shadowJar {
|
|
|
|
classifier = 'benchmarks'
|
|
|
|
}
|
|
|
|
|
2018-03-12 02:58:07 -04:00
|
|
|
runShadow {
|
|
|
|
executable = new File(project.runtimeJavaHome, 'bin/java')
|
|
|
|
}
|
|
|
|
|
2016-06-15 10:48:02 -04:00
|
|
|
// alias the shadowJar and runShadow tasks to abstract from the concrete plugin that we are using and provide a more consistent interface
|
|
|
|
task jmhJar(
|
|
|
|
dependsOn: shadowJar,
|
|
|
|
description: 'Generates an uberjar with the microbenchmarks and all dependencies',
|
|
|
|
group: 'Benchmark'
|
|
|
|
)
|
|
|
|
|
|
|
|
task jmh(
|
|
|
|
dependsOn: runShadow,
|
|
|
|
description: 'Runs all microbenchmarks',
|
|
|
|
group: 'Benchmark'
|
|
|
|
)
|