2016-11-23 12:12:42 -05: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import org.elasticsearch.gradle.test.RestIntegTestTask
|
|
|
|
|
2019-06-28 09:38:17 -04:00
|
|
|
apply plugin: 'elasticsearch.testclusters'
|
2016-11-23 12:12:42 -05:00
|
|
|
apply plugin: 'elasticsearch.standalone-test'
|
|
|
|
|
2019-03-25 05:26:55 -04:00
|
|
|
dependencies {
|
2020-06-14 16:30:44 -04:00
|
|
|
testImplementation project(":client:rest-high-level")
|
2019-03-25 05:26:55 -04:00
|
|
|
}
|
|
|
|
|
2019-06-28 09:38:17 -04:00
|
|
|
task 'remote-cluster'(type: RestIntegTestTask) {
|
2016-11-23 12:12:42 -05:00
|
|
|
mustRunAfter(precommit)
|
2019-06-28 09:38:17 -04:00
|
|
|
runner {
|
|
|
|
systemProperty 'tests.rest.suite', 'remote_cluster'
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2019-06-28 09:38:17 -04:00
|
|
|
testClusters.'remote-cluster' {
|
|
|
|
numberOfNodes = 2
|
Introduce node.roles setting (#58512)
Today we have individual settings for configuring node roles such as
node.data and node.master. Additionally, roles are pluggable and we have
used this to introduce roles such as node.ml and node.voting_only. As
the number of roles is growing, managing these becomes harder for the
user. For example, to create a master-only node, today a user has to
configure:
- node.data: false
- node.ingest: false
- node.remote_cluster_client: false
- node.ml: false
at a minimum if they are relying on defaults, but also add:
- node.master: true
- node.transform: false
- node.voting_only: false
If they want to be explicit. This is also challenging in cases where a
user wants to have configure a coordinating-only node which requires
disabling all roles, a list which we are adding to, requiring the user
to keep checking whether a node has acquired any of these roles.
This commit addresses this by adding a list setting node.roles for which
a user has explicit control over the list of roles that a node has. If
the setting is configured, the node has exactly the roles in the list,
and not any additional roles. This means to configure a master-only
node, the setting is merely 'node.roles: [master]', and to configure a
coordinating-only node, the setting is merely: 'node.roles: []'.
With this change we deprecate the existing 'node.*' settings such as
'node.data'.
2020-06-25 14:14:51 -04:00
|
|
|
setting 'node.roles', '[data,ingest,master]'
|
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
|
|
|
}
|
|
|
|
|
2019-06-28 09:38:17 -04:00
|
|
|
task mixedClusterTest(type: RestIntegTestTask) {
|
|
|
|
runner {
|
2019-08-09 06:32:27 -04:00
|
|
|
useCluster testClusters.'remote-cluster'
|
2019-06-28 09:38:17 -04:00
|
|
|
dependsOn 'remote-cluster'
|
|
|
|
systemProperty 'tests.rest.suite', 'multi_cluster'
|
|
|
|
}
|
2016-11-23 12:12:42 -05:00
|
|
|
}
|
|
|
|
|
2019-06-28 09:38:17 -04:00
|
|
|
testClusters.mixedClusterTest {
|
|
|
|
setting 'cluster.remote.my_remote_cluster.seeds',
|
2019-11-14 06:01:23 -05:00
|
|
|
{ "\"${testClusters.'remote-cluster'.getAllTransportPortURI().get(0)}\"" }
|
2019-06-28 09:38:17 -04:00
|
|
|
setting 'cluster.remote.connections_per_cluster', '1'
|
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
|
|
|
}
|
|
|
|
|
2016-11-23 12:12:42 -05:00
|
|
|
|
|
|
|
task integTest {
|
2019-06-28 09:38:17 -04:00
|
|
|
dependsOn mixedClusterTest
|
2016-11-23 12:12:42 -05:00
|
|
|
}
|
|
|
|
|
2019-04-09 14:52:50 -04:00
|
|
|
test.enabled = false // no unit tests for multi-cluster-search, only integration tests
|
2016-11-23 12:12:42 -05:00
|
|
|
|
|
|
|
check.dependsOn(integTest)
|