mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-06 13:08:29 +00:00
175bda64a0
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.
41 lines
1.3 KiB
Groovy
41 lines
1.3 KiB
Groovy
/*
|
|
* 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.
|
|
*/
|
|
|
|
esplugin {
|
|
description 'Lucene expressions integration for Elasticsearch'
|
|
classname 'org.elasticsearch.script.expression.ExpressionPlugin'
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.apache.lucene:lucene-expressions:${versions.lucene}"
|
|
compile 'org.antlr:antlr4-runtime:4.5.1-1'
|
|
compile 'org.ow2.asm:asm:5.0.4'
|
|
compile 'org.ow2.asm:asm-commons:5.0.4'
|
|
compile 'org.ow2.asm:asm-tree:5.0.4'
|
|
}
|
|
|
|
dependencyLicenses {
|
|
mapping from: /lucene-.*/, to: 'lucene'
|
|
mapping from: /asm-.*/, to: 'asm'
|
|
}
|
|
|
|
integTestCluster {
|
|
setting 'script.max_compilations_per_minute', '1000'
|
|
}
|