From a40bec636e4093956b78c75bc49f03d5edd20af7 Mon Sep 17 00:00:00 2001 From: Simon Chase Date: Fri, 26 Sep 2025 21:59:49 -0700 Subject: [PATCH 1/2] repository: increase timeout for repository analysis The MinIO repository analyze test is failing in builds sometimes because of a timeout. This change increases it from 2 minutes to 5 minutes. --- .../testkit/analyze/AbstractRepositoryAnalysisRestTestCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugin/snapshot-repo-test-kit/src/test/java/org/elasticsearch/repositories/blobstore/testkit/analyze/AbstractRepositoryAnalysisRestTestCase.java b/x-pack/plugin/snapshot-repo-test-kit/src/test/java/org/elasticsearch/repositories/blobstore/testkit/analyze/AbstractRepositoryAnalysisRestTestCase.java index 69ab919ec3392..d90efe1dd97cd 100644 --- a/x-pack/plugin/snapshot-repo-test-kit/src/test/java/org/elasticsearch/repositories/blobstore/testkit/analyze/AbstractRepositoryAnalysisRestTestCase.java +++ b/x-pack/plugin/snapshot-repo-test-kit/src/test/java/org/elasticsearch/repositories/blobstore/testkit/analyze/AbstractRepositoryAnalysisRestTestCase.java @@ -29,7 +29,7 @@ public void testRepositoryAnalysis() throws Exception { logger.info("creating repository [{}] of type [{}]", repository, repositoryType); registerRepository(repository, repositoryType, true, repositorySettings); - final TimeValue timeout = TimeValue.timeValueSeconds(120); + final TimeValue timeout = TimeValue.timeValueSeconds(5 * 60); final Request request = new Request(HttpPost.METHOD_NAME, "/_snapshot/" + repository + "/_analyze"); request.addParameter("blob_count", "10"); request.addParameter("concurrency", "4"); From 6500131c4743314b05d2b589db0e56f1309c81ef Mon Sep 17 00:00:00 2001 From: Simon Chase Date: Mon, 29 Sep 2025 15:46:24 -0700 Subject: [PATCH 2/2] Unmuting tests --- muted-tests.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/muted-tests.yml b/muted-tests.yml index 7a3e227cbb5ac..f5ab1e18e02df 100644 --- a/muted-tests.yml +++ b/muted-tests.yml @@ -507,9 +507,6 @@ tests: - class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecIT method: test {csv-spec:fork.ForkBeforeStatsByWithWhere} issue: https://github.com/elastic/elasticsearch/issues/134817 -- class: org.elasticsearch.repositories.blobstore.testkit.analyze.MinioRepositoryAnalysisRestIT - method: testRepositoryAnalysis - issue: https://github.com/elastic/elasticsearch/issues/134853 - class: org.elasticsearch.xpack.esql.action.CrossClusterAsyncQueryStopIT method: testStopQueryInlinestats issue: https://github.com/elastic/elasticsearch/issues/134854