From 7ca8376f68148f2c955b30796219f08c8f5eea10 Mon Sep 17 00:00:00 2001 From: David Kyle Date: Wed, 24 May 2023 11:59:41 +0100 Subject: [PATCH] Add Elasticsearch 8.8 snapshot to test matrix (#543) And increase the test ES node heap size to prevent circuit breaker exceptions due to better memory accounting in elastic/elasticsearch#89437. --- .ci/run-elasticsearch.sh | 2 +- .ci/test-matrix.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.ci/run-elasticsearch.sh b/.ci/run-elasticsearch.sh index 7428b2f..abcde11 100755 --- a/.ci/run-elasticsearch.sh +++ b/.ci/run-elasticsearch.sh @@ -146,7 +146,7 @@ set -x docker run \ --name "$NODE_NAME" \ --network "$NETWORK_NAME" \ - --env ES_JAVA_OPTS=-"Xms1g -Xmx1g" \ + --env ES_JAVA_OPTS=-"Xms2g -Xmx2g" \ "${environment[@]}" \ "${volumes[@]}" \ --publish "$HTTP_PORT":9200 \ diff --git a/.ci/test-matrix.yml b/.ci/test-matrix.yml index aa09962..5b4ed7a 100644 --- a/.ci/test-matrix.yml +++ b/.ci/test-matrix.yml @@ -3,6 +3,7 @@ ELASTICSEARCH_VERSION: - '8.6.0-SNAPSHOT' - '8.7.0-SNAPSHOT' + - '8.8.0-SNAPSHOT' PANDAS_VERSION: - '1.5.0'