mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-09 14:34:43 +00:00
These tests were added to do a proper end-to-end test of the memory usage of the geotile_grid and geohash_grid aggregations on `geo_shape` fields. Although this was asperational, the truth is — the test environment does not run these aggregations in isolation. This means that the memory overhead is variable and too flaky to rely on over time. The unit tests for circuit-breaking remain. Closes #63158.
33 lines
982 B
Groovy
33 lines
982 B
Groovy
apply plugin: 'elasticsearch.esplugin'
|
|
apply plugin: 'elasticsearch.internal-cluster-test'
|
|
apply plugin: 'elasticsearch.yaml-rest-test'
|
|
|
|
esplugin {
|
|
name 'spatial'
|
|
description 'A plugin for Basic Spatial features'
|
|
classname 'org.elasticsearch.xpack.spatial.SpatialPlugin'
|
|
extendedPlugins = ['x-pack-core']
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly project(path: xpackModule('core'), configuration: 'default')
|
|
testImplementation project(path: xpackModule('core'), configuration: 'testArtifacts')
|
|
yamlRestTestImplementation project(path: xpackModule('core'), configuration: 'testArtifacts')
|
|
api project(path: ':modules:geo', configuration: 'default')
|
|
restTestConfig project(path: ':modules:geo', configuration: 'restTests')
|
|
}
|
|
|
|
restResources {
|
|
restApi {
|
|
includeCore '_common', 'bulk', 'indices', 'index', 'search'
|
|
}
|
|
restTests {
|
|
includeCore 'geo_shape'
|
|
}
|
|
}
|
|
|
|
testClusters.all {
|
|
setting 'xpack.license.self_generated.type', 'trial'
|
|
testDistribution = 'DEFAULT'
|
|
}
|