From d00516e811bd5636e0221011e57b249918ae4050 Mon Sep 17 00:00:00 2001 From: Ben Chaplin Date: Fri, 1 Aug 2025 15:14:17 -0400 Subject: [PATCH 1/2] Increase timeouts for the CCS yaml suites --- muted-tests.yml | 20 ------------------- .../rest/yaml/CcsCommonYamlTestSuiteIT.java | 2 +- .../yaml/RcsCcsCommonYamlTestSuiteIT.java | 2 +- 3 files changed, 2 insertions(+), 22 deletions(-) diff --git a/muted-tests.yml b/muted-tests.yml index dfc6a753d478b..168af38580d98 100644 --- a/muted-tests.yml +++ b/muted-tests.yml @@ -143,8 +143,6 @@ tests: - class: org.elasticsearch.backwards.MixedClusterClientYamlTestSuiteIT method: test {p0=nodes.stats/11_indices_metrics/indices mappings exact count test for indices level} issue: https://github.com/elastic/elasticsearch/issues/120950 -- class: org.elasticsearch.test.rest.yaml.CcsCommonYamlTestSuiteIT - issue: https://github.com/elastic/elasticsearch/issues/121407 - class: org.elasticsearch.analysis.common.CommonAnalysisClientYamlTestSuiteIT method: test {yaml=analysis-common/40_token_filters/stemmer_override file access} issue: https://github.com/elastic/elasticsearch/issues/121625 @@ -365,9 +363,6 @@ tests: - class: org.elasticsearch.xpack.esql.inference.bulk.BulkInferenceExecutorTests method: testSuccessfulExecution issue: https://github.com/elastic/elasticsearch/issues/130306 -- class: org.elasticsearch.test.rest.yaml.RcsCcsCommonYamlTestSuiteIT - method: test {p0=msearch/20_typed_keys/Multisearch test with typed_keys parameter for sampler and significant terms} - issue: https://github.com/elastic/elasticsearch/issues/130472 - class: org.elasticsearch.index.codec.vectors.cluster.HierarchicalKMeansTests method: testHKmeans issue: https://github.com/elastic/elasticsearch/issues/130497 @@ -392,9 +387,6 @@ tests: - class: org.elasticsearch.xpack.esql.ccq.MultiClustersIT method: testLookupJoinAliases issue: https://github.com/elastic/elasticsearch/issues/131166 -- class: org.elasticsearch.test.rest.yaml.RcsCcsCommonYamlTestSuiteIT - method: test {p0=field_caps/40_time_series/Get simple time series field caps} - issue: https://github.com/elastic/elasticsearch/issues/131225 - class: org.elasticsearch.packaging.test.DockerTests method: test090SecurityCliPackaging issue: https://github.com/elastic/elasticsearch/issues/131107 @@ -410,9 +402,6 @@ tests: - class: org.elasticsearch.packaging.test.DockerTests method: test171AdditionalCliOptionsAreForwarded issue: https://github.com/elastic/elasticsearch/issues/120925 -- class: org.elasticsearch.test.rest.yaml.RcsCcsCommonYamlTestSuiteIT - method: test {p0=search/110_field_collapsing/field collapsing, inner_hits and maxConcurrentGroupRequests} - issue: https://github.com/elastic/elasticsearch/issues/131348 - class: org.elasticsearch.xpack.esql.vector.VectorSimilarityFunctionsIT method: testSimilarityBetweenConstantVectors {functionName=v_cosine similarityFunction=COSINE} issue: https://github.com/elastic/elasticsearch/issues/131361 @@ -443,9 +432,6 @@ tests: - class: org.elasticsearch.xpack.esql.heap_attack.HeapAttackIT method: testLookupExplosionNoFetch issue: https://github.com/elastic/elasticsearch/issues/128720 -- class: org.elasticsearch.test.rest.yaml.RcsCcsCommonYamlTestSuiteIT - method: test {p0=vector-tile/20_aggregations/stats agg} - issue: https://github.com/elastic/elasticsearch/issues/131484 - class: org.elasticsearch.packaging.test.DockerTests method: test050BasicApiTests issue: https://github.com/elastic/elasticsearch/issues/120911 @@ -467,9 +453,6 @@ tests: - class: org.elasticsearch.packaging.test.DockerTests method: test010Install issue: https://github.com/elastic/elasticsearch/issues/131376 -- class: org.elasticsearch.test.rest.yaml.RcsCcsCommonYamlTestSuiteIT - method: test {p0=search/40_indices_boost/Indices boost with alias} - issue: https://github.com/elastic/elasticsearch/issues/131598 - class: org.elasticsearch.compute.lucene.read.SortedSetOrdinalsBuilderTests method: testReader issue: https://github.com/elastic/elasticsearch/issues/131573 @@ -491,9 +474,6 @@ tests: - class: org.elasticsearch.xpack.restart.FullClusterRestartIT method: testWatcherWithApiKey {cluster=UPGRADED} issue: https://github.com/elastic/elasticsearch/issues/131964 -- class: org.elasticsearch.test.rest.yaml.RcsCcsCommonYamlTestSuiteIT - method: test {p0=search/600_flattened_ignore_above/flattened ignore_above multi-value field} - issue: https://github.com/elastic/elasticsearch/issues/131967 - class: org.elasticsearch.xpack.remotecluster.CrossClusterEsqlRCS1EnrichUnavailableRemotesIT method: testEsqlEnrichWithSkipUnavailable issue: https://github.com/elastic/elasticsearch/issues/132078 diff --git a/qa/ccs-common-rest/src/yamlRestTest/java/org/elasticsearch/test/rest/yaml/CcsCommonYamlTestSuiteIT.java b/qa/ccs-common-rest/src/yamlRestTest/java/org/elasticsearch/test/rest/yaml/CcsCommonYamlTestSuiteIT.java index 0b7893fc26b1d..c9b9ac5dde66d 100644 --- a/qa/ccs-common-rest/src/yamlRestTest/java/org/elasticsearch/test/rest/yaml/CcsCommonYamlTestSuiteIT.java +++ b/qa/ccs-common-rest/src/yamlRestTest/java/org/elasticsearch/test/rest/yaml/CcsCommonYamlTestSuiteIT.java @@ -67,7 +67,7 @@ * using the client running against the "write" cluster. * */ -@TimeoutSuite(millis = 15 * TimeUnits.MINUTE) // to account for slow as hell VMs +@TimeoutSuite(millis = 20 * TimeUnits.MINUTE) // to account for slow as hell VMs public class CcsCommonYamlTestSuiteIT extends ESClientYamlSuiteTestCase { private static final Logger logger = LogManager.getLogger(CcsCommonYamlTestSuiteIT.class); diff --git a/qa/ccs-common-rest/src/yamlRestTest/java/org/elasticsearch/test/rest/yaml/RcsCcsCommonYamlTestSuiteIT.java b/qa/ccs-common-rest/src/yamlRestTest/java/org/elasticsearch/test/rest/yaml/RcsCcsCommonYamlTestSuiteIT.java index 577bb4be8629b..b214314099071 100644 --- a/qa/ccs-common-rest/src/yamlRestTest/java/org/elasticsearch/test/rest/yaml/RcsCcsCommonYamlTestSuiteIT.java +++ b/qa/ccs-common-rest/src/yamlRestTest/java/org/elasticsearch/test/rest/yaml/RcsCcsCommonYamlTestSuiteIT.java @@ -64,7 +64,7 @@ * using the client running against the "write" cluster. * */ -@TimeoutSuite(millis = 20 * TimeUnits.MINUTE) // to account for slow as hell VMs +@TimeoutSuite(millis = 25 * TimeUnits.MINUTE) // to account for slow as hell VMs public class RcsCcsCommonYamlTestSuiteIT extends ESClientYamlSuiteTestCase { private static final Logger logger = LogManager.getLogger(RcsCcsCommonYamlTestSuiteIT.class); From a2f194df7a25c281a91bcf544158f72ab2688d71 Mon Sep 17 00:00:00 2001 From: Ben Chaplin Date: Mon, 11 Aug 2025 09:23:32 -0400 Subject: [PATCH 2/2] Fix formatting --- muted-tests.yml | 1026 +++++++++++++++++++++++------------------------ 1 file changed, 513 insertions(+), 513 deletions(-) diff --git a/muted-tests.yml b/muted-tests.yml index 7fc1a10aeb70a..e17566671b7e2 100644 --- a/muted-tests.yml +++ b/muted-tests.yml @@ -1,518 +1,518 @@ tests: - - class: "org.elasticsearch.client.RestClientSingleHostIntegTests" - issue: "https://github.com/elastic/elasticsearch/issues/102717" - method: "testRequestResetAndAbort" - - class: org.elasticsearch.packaging.test.PackagesSecurityAutoConfigurationTests - method: test20SecurityNotAutoConfiguredOnReInstallation - issue: https://github.com/elastic/elasticsearch/issues/112635 - - class: org.elasticsearch.xpack.sql.qa.single_node.JdbcSqlSpecIT - method: test {case-functions.testSelectInsertWithLcaseAndLengthWithOrderBy} - issue: https://github.com/elastic/elasticsearch/issues/112642 - - class: org.elasticsearch.xpack.sql.qa.single_node.JdbcSqlSpecIT - method: test {case-functions.testUcaseInline1} - issue: https://github.com/elastic/elasticsearch/issues/112641 - - class: org.elasticsearch.xpack.sql.qa.single_node.JdbcSqlSpecIT - method: test {case-functions.testUpperCasingTheSecondLetterFromTheRightFromFirstName} - issue: https://github.com/elastic/elasticsearch/issues/112640 - - class: org.elasticsearch.xpack.sql.qa.single_node.JdbcSqlSpecIT - method: test {case-functions.testUcaseInline3} - issue: https://github.com/elastic/elasticsearch/issues/112643 - - class: org.elasticsearch.xpack.sql.qa.security.JdbcSqlSpecIT - method: test {case-functions.testUcaseInline1} - issue: https://github.com/elastic/elasticsearch/issues/112641 - - class: org.elasticsearch.xpack.sql.qa.security.JdbcSqlSpecIT - method: test {case-functions.testUcaseInline3} - issue: https://github.com/elastic/elasticsearch/issues/112643 - - class: org.elasticsearch.xpack.sql.qa.security.JdbcSqlSpecIT - method: test {case-functions.testUpperCasingTheSecondLetterFromTheRightFromFirstName} - issue: https://github.com/elastic/elasticsearch/issues/112640 - - class: org.elasticsearch.xpack.sql.qa.security.JdbcSqlSpecIT - method: test {case-functions.testSelectInsertWithLcaseAndLengthWithOrderBy} - issue: https://github.com/elastic/elasticsearch/issues/112642 - - class: org.elasticsearch.packaging.test.WindowsServiceTests - method: test30StartStop - issue: https://github.com/elastic/elasticsearch/issues/113160 - - class: org.elasticsearch.packaging.test.WindowsServiceTests - method: test33JavaChanged - issue: https://github.com/elastic/elasticsearch/issues/113177 - - class: org.elasticsearch.packaging.test.WindowsServiceTests - method: test80JavaOptsInEnvVar - issue: https://github.com/elastic/elasticsearch/issues/113219 - - class: org.elasticsearch.packaging.test.WindowsServiceTests - method: test81JavaOptsInJvmOptions - issue: https://github.com/elastic/elasticsearch/issues/113313 - - class: org.elasticsearch.xpack.transform.integration.TransformIT - method: testStopWaitForCheckpoint - issue: https://github.com/elastic/elasticsearch/issues/106113 - - class: org.elasticsearch.xpack.remotecluster.RemoteClusterSecurityWithApmTracingRestIT - method: testTracingCrossCluster - issue: https://github.com/elastic/elasticsearch/issues/112731 - - class: org.elasticsearch.xpack.restart.MLModelDeploymentFullClusterRestartIT - method: testDeploymentSurvivesRestart {cluster=UPGRADED} - issue: https://github.com/elastic/elasticsearch/issues/115528 - - class: org.elasticsearch.xpack.shutdown.NodeShutdownIT - method: testStalledShardMigrationProperlyDetected - issue: https://github.com/elastic/elasticsearch/issues/115697 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=transform/transforms_start_stop/Verify start transform reuses destination index} - issue: https://github.com/elastic/elasticsearch/issues/115808 - - class: org.elasticsearch.xpack.application.connector.ConnectorIndexServiceTests - issue: https://github.com/elastic/elasticsearch/issues/116087 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=transform/transforms_start_stop/Test start already started transform} - issue: https://github.com/elastic/elasticsearch/issues/98802 - - class: org.elasticsearch.xpack.shutdown.NodeShutdownIT - method: testAllocationPreventedForRemoval - issue: https://github.com/elastic/elasticsearch/issues/116363 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=snapshot/20_operator_privileges_disabled/Operator only settings can be set and restored by non-operator user when operator privileges is disabled} - issue: https://github.com/elastic/elasticsearch/issues/116775 - - class: org.elasticsearch.search.basic.SearchWithRandomIOExceptionsIT - method: testRandomDirectoryIOExceptions - issue: https://github.com/elastic/elasticsearch/issues/114824 - - class: org.elasticsearch.xpack.apmdata.APMYamlTestSuiteIT - method: test {yaml=/10_apm/Test template reinstallation} - issue: https://github.com/elastic/elasticsearch/issues/116445 - - class: org.elasticsearch.versioning.ConcurrentSeqNoVersioningIT - method: testSeqNoCASLinearizability - issue: https://github.com/elastic/elasticsearch/issues/117249 - - class: org.elasticsearch.discovery.ClusterDisruptionIT - method: testAckedIndexing - issue: https://github.com/elastic/elasticsearch/issues/117024 - - class: org.elasticsearch.xpack.inference.InferenceRestIT - method: test {p0=inference/40_semantic_text_query/Query a field that uses the default ELSER 2 endpoint} - issue: https://github.com/elastic/elasticsearch/issues/117027 - - class: org.elasticsearch.xpack.inference.InferenceRestIT - method: test {p0=inference/30_semantic_text_inference/Calculates embeddings using the default ELSER 2 endpoint} - issue: https://github.com/elastic/elasticsearch/issues/117349 - - class: org.elasticsearch.xpack.inference.InferenceRestIT - method: test {p0=inference/30_semantic_text_inference_bwc/Calculates embeddings using the default ELSER 2 endpoint} - issue: https://github.com/elastic/elasticsearch/issues/117349 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=transform/transforms_reset/Test reset running transform} - issue: https://github.com/elastic/elasticsearch/issues/117473 - - class: org.elasticsearch.xpack.ml.integration.RegressionIT - method: testTwoJobsWithSameRandomizeSeedUseSameTrainingSet - issue: https://github.com/elastic/elasticsearch/issues/117805 - - class: org.elasticsearch.packaging.test.ArchiveTests - method: test44AutoConfigurationNotTriggeredOnNotWriteableConfDir - issue: https://github.com/elastic/elasticsearch/issues/118208 - - class: org.elasticsearch.packaging.test.ArchiveTests - method: test51AutoConfigurationWithPasswordProtectedKeystore - issue: https://github.com/elastic/elasticsearch/issues/118212 - - class: org.elasticsearch.xpack.ccr.rest.ShardChangesRestIT - method: testShardChangesNoOperation - issue: https://github.com/elastic/elasticsearch/issues/118800 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=transform/transforms_start_stop/Test start/stop/start transform} - issue: https://github.com/elastic/elasticsearch/issues/119508 - - class: org.elasticsearch.smoketest.MlWithSecurityIT - method: test {yaml=ml/sparse_vector_search/Test sparse_vector search with query vector and pruning config} - issue: https://github.com/elastic/elasticsearch/issues/119548 - - class: org.elasticsearch.xpack.ml.integration.ForecastIT - method: testOverflowToDisk - issue: https://github.com/elastic/elasticsearch/issues/117740 - - class: org.elasticsearch.multi_cluster.MultiClusterYamlTestSuiteIT - issue: https://github.com/elastic/elasticsearch/issues/119983 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=transform/transforms_unattended/Test unattended put and start} - issue: https://github.com/elastic/elasticsearch/issues/120019 - - class: org.elasticsearch.xpack.security.QueryableReservedRolesIT - method: testConfiguredReservedRolesAfterClosingAndOpeningIndex - issue: https://github.com/elastic/elasticsearch/issues/120127 - - class: org.elasticsearch.oldrepos.OldRepositoryAccessIT - method: testOldRepoAccess - issue: https://github.com/elastic/elasticsearch/issues/120148 - - class: org.elasticsearch.oldrepos.OldRepositoryAccessIT - method: testOldSourceOnlyRepoAccess - issue: https://github.com/elastic/elasticsearch/issues/120080 - - class: org.elasticsearch.xpack.ccr.FollowIndexSecurityIT - method: testCleanShardFollowTaskAfterDeleteFollower - issue: https://github.com/elastic/elasticsearch/issues/120339 - - class: org.elasticsearch.xpack.sql.expression.function.scalar.datetime.DateTimeToCharProcessorTests - issue: https://github.com/elastic/elasticsearch/issues/120575 - - class: org.elasticsearch.xpack.inference.DefaultEndPointsIT - method: testMultipleInferencesTriggeringDownloadAndDeploy - issue: https://github.com/elastic/elasticsearch/issues/120668 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=ml/3rd_party_deployment/Test start deployment fails while model download in progress} - issue: https://github.com/elastic/elasticsearch/issues/120810 - - class: org.elasticsearch.xpack.security.authc.service.ServiceAccountIT - method: testAuthenticateShouldNotFallThroughInCaseOfFailure - issue: https://github.com/elastic/elasticsearch/issues/120902 - - class: org.elasticsearch.backwards.MixedClusterClientYamlTestSuiteIT - method: test {p0=nodes.stats/11_indices_metrics/indices mappings exact count test for indices level} - issue: https://github.com/elastic/elasticsearch/issues/120950 - - class: org.elasticsearch.analysis.common.CommonAnalysisClientYamlTestSuiteIT - method: test {yaml=analysis-common/40_token_filters/stemmer_override file access} - issue: https://github.com/elastic/elasticsearch/issues/121625 - - class: org.elasticsearch.test.rest.ClientYamlTestSuiteIT - method: test {yaml=snapshot.delete/10_basic/Delete a snapshot asynchronously} - issue: https://github.com/elastic/elasticsearch/issues/122102 - - class: org.elasticsearch.blocks.SimpleBlocksIT - method: testConcurrentAddBlock - issue: https://github.com/elastic/elasticsearch/issues/122324 - - class: org.elasticsearch.action.admin.cluster.node.tasks.CancellableTasksIT - method: testChildrenTasksCancelledOnTimeout - issue: https://github.com/elastic/elasticsearch/issues/123568 - - class: org.elasticsearch.xpack.searchablesnapshots.FrozenSearchableSnapshotsIntegTests - method: testCreateAndRestorePartialSearchableSnapshot - issue: https://github.com/elastic/elasticsearch/issues/123773 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=snapshot/10_basic/Create a source only snapshot and then restore it} - issue: https://github.com/elastic/elasticsearch/issues/122755 - - class: org.elasticsearch.smoketest.MlWithSecurityIT - method: test {yaml=ml/data_frame_analytics_crud/Test get stats given multiple analytics} - issue: https://github.com/elastic/elasticsearch/issues/123034 - - class: org.elasticsearch.indices.recovery.IndexRecoveryIT - method: testSourceThrottling - issue: https://github.com/elastic/elasticsearch/issues/123680 - - class: org.elasticsearch.smoketest.MlWithSecurityIT - method: test {yaml=ml/3rd_party_deployment/Test start deployment fails while model download in progress} - issue: https://github.com/elastic/elasticsearch/issues/120814 - - class: org.elasticsearch.smoketest.MlWithSecurityIT - method: test {yaml=ml/start_data_frame_analytics/Test start classification analysis when the dependent variable is missing} - issue: https://github.com/elastic/elasticsearch/issues/124168 - - class: org.elasticsearch.smoketest.MlWithSecurityIT - method: test {yaml=ml/3rd_party_deployment/Test start and stop multiple deployments} - issue: https://github.com/elastic/elasticsearch/issues/124315 - - class: org.elasticsearch.xpack.restart.MLModelDeploymentFullClusterRestartIT - method: testDeploymentSurvivesRestart {cluster=OLD} - issue: https://github.com/elastic/elasticsearch/issues/124160 - - class: org.elasticsearch.packaging.test.BootstrapCheckTests - method: test20RunWithBootstrapChecks - issue: https://github.com/elastic/elasticsearch/issues/124940 - - class: org.elasticsearch.packaging.test.BootstrapCheckTests - method: test10Install - issue: https://github.com/elastic/elasticsearch/issues/124957 - - class: org.elasticsearch.smoketest.MlWithSecurityIT - method: test {yaml=ml/data_frame_analytics_crud/Test get stats on newly created config} - issue: https://github.com/elastic/elasticsearch/issues/121726 - - class: org.elasticsearch.smoketest.MlWithSecurityIT - method: test {yaml=ml/data_frame_analytics_cat_apis/Test cat data frame analytics all jobs with header and column selection} - issue: https://github.com/elastic/elasticsearch/issues/125641 - - class: org.elasticsearch.smoketest.MlWithSecurityIT - method: test {yaml=ml/data_frame_analytics_cat_apis/Test cat data frame analytics single job with header} - issue: https://github.com/elastic/elasticsearch/issues/125642 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=transform/transforms_start_stop/Test schedule_now on an already started transform} - issue: https://github.com/elastic/elasticsearch/issues/120720 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=transform/transforms_start_stop/Verify start transform creates destination index with appropriate mapping} - issue: https://github.com/elastic/elasticsearch/issues/125854 - - class: org.elasticsearch.xpack.core.common.notifications.AbstractAuditorTests - method: testRecreateTemplateWhenDeleted - issue: https://github.com/elastic/elasticsearch/issues/123232 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=ml/start_data_frame_analytics/Test start given dest index is not empty} - issue: https://github.com/elastic/elasticsearch/issues/125909 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=transform/transforms_stats/Test get transform stats with timeout} - issue: https://github.com/elastic/elasticsearch/issues/125975 - - class: org.elasticsearch.action.RejectionActionIT - method: testSimulatedSearchRejectionLoad - issue: https://github.com/elastic/elasticsearch/issues/125901 - - class: org.elasticsearch.search.CCSDuelIT - method: testTerminateAfter - issue: https://github.com/elastic/elasticsearch/issues/126085 - - class: org.elasticsearch.search.basic.SearchWithRandomDisconnectsIT - method: testSearchWithRandomDisconnects - issue: https://github.com/elastic/elasticsearch/issues/122707 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=transform/transforms_reset/Test force reseting a running transform} - issue: https://github.com/elastic/elasticsearch/issues/126240 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=transform/transforms_stats/Test get transform stats} - issue: https://github.com/elastic/elasticsearch/issues/126270 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=ml/start_data_frame_analytics/Test start classification analysis when the dependent variable cardinality is too low} - issue: https://github.com/elastic/elasticsearch/issues/126299 - - class: org.elasticsearch.smoketest.MlWithSecurityIT - method: test {yaml=ml/start_data_frame_analytics/Test start classification analysis when the dependent variable cardinality is too low} - issue: https://github.com/elastic/elasticsearch/issues/123200 - - class: org.elasticsearch.smoketest.MlWithSecurityIT - method: test {yaml=ml/trained_model_cat_apis/Test cat trained models} - issue: https://github.com/elastic/elasticsearch/issues/125750 - - class: org.elasticsearch.ingest.geoip.EnterpriseGeoIpDownloaderIT - method: testEnterpriseDownloaderTask - issue: https://github.com/elastic/elasticsearch/issues/126124 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=transform/transforms_start_stop/Test start/stop only starts/stops specified transform} - issue: https://github.com/elastic/elasticsearch/issues/126466 - - class: org.elasticsearch.smoketest.MlWithSecurityIT - method: test {yaml=ml/get_trained_model_stats/Test get stats given trained models} - issue: https://github.com/elastic/elasticsearch/issues/126510 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=transform/transforms_stats/Test get multiple transform stats} - issue: https://github.com/elastic/elasticsearch/issues/126567 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=transform/transforms_stats/Test get single transform stats when it does not have a task} - issue: https://github.com/elastic/elasticsearch/issues/126568 - - class: org.elasticsearch.repositories.blobstore.testkit.rest.SnapshotRepoTestKitClientYamlTestSuiteIT - method: test {p0=/10_analyze/Analysis without details} - issue: https://github.com/elastic/elasticsearch/issues/126569 - - class: org.elasticsearch.xpack.esql.action.EsqlActionIT - method: testQueryOnEmptyDataIndex - issue: https://github.com/elastic/elasticsearch/issues/126580 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=transform/transforms_start_stop/Test start/stop/start continuous transform} - issue: https://github.com/elastic/elasticsearch/issues/126755 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=transform/transforms_stats/Test get multiple transform stats where one does not have a task} - issue: https://github.com/elastic/elasticsearch/issues/126863 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=ml/inference_crud/Test delete given unused trained model} - issue: https://github.com/elastic/elasticsearch/issues/126881 - - class: org.elasticsearch.index.engine.CompletionStatsCacheTests - method: testCompletionStatsCache - issue: https://github.com/elastic/elasticsearch/issues/126910 - - class: org.elasticsearch.xpack.ml.integration.ClassificationHousePricingIT - method: testFeatureImportanceValues - issue: https://github.com/elastic/elasticsearch/issues/124341 - - class: org.elasticsearch.cli.keystore.AddStringKeyStoreCommandTests - method: testStdinWithMultipleValues - issue: https://github.com/elastic/elasticsearch/issues/126882 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=ml/data_frame_analytics_cat_apis/Test cat data frame analytics all jobs with header} - issue: https://github.com/elastic/elasticsearch/issues/127625 - - class: org.elasticsearch.xpack.ccr.action.ShardFollowTaskReplicationTests - method: testChangeFollowerHistoryUUID - issue: https://github.com/elastic/elasticsearch/issues/127680 - - class: org.elasticsearch.action.admin.indices.diskusage.IndexDiskUsageAnalyzerTests - method: testKnnVectors - issue: https://github.com/elastic/elasticsearch/issues/127689 - - class: org.elasticsearch.backwards.MixedClusterClientYamlTestSuiteIT - method: test {p0=search/350_point_in_time/point-in-time with index filter} - issue: https://github.com/elastic/elasticsearch/issues/127741 - - class: org.elasticsearch.xpack.esql.action.CrossClusterQueryWithPartialResultsIT - method: testOneRemoteClusterPartial - issue: https://github.com/elastic/elasticsearch/issues/124055 - - class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT - method: test {csv-spec:lookup-join.MvJoinKeyOnTheLookupIndex} - issue: https://github.com/elastic/elasticsearch/issues/128030 - - class: org.elasticsearch.packaging.test.EnrollmentProcessTests - method: test20DockerAutoFormCluster - issue: https://github.com/elastic/elasticsearch/issues/128113 - - class: org.elasticsearch.ingest.geoip.GeoIpDownloaderCliIT - method: testInvalidTimestamp - issue: https://github.com/elastic/elasticsearch/issues/128284 - - class: org.elasticsearch.packaging.test.TemporaryDirectoryConfigTests - method: test21AcceptsCustomPathInDocker - issue: https://github.com/elastic/elasticsearch/issues/128114 - - class: org.elasticsearch.xpack.esql.plugin.DataNodeRequestSenderIT - method: testSearchWhileRelocating - issue: https://github.com/elastic/elasticsearch/issues/128500 - - class: org.elasticsearch.compute.operator.LimitOperatorTests - method: testEarlyTermination - issue: https://github.com/elastic/elasticsearch/issues/128721 - - class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeForkIT - method: test {csv-spec:lookup-join.EnrichLookupStatsBug} - issue: https://github.com/elastic/elasticsearch/issues/129228 - - class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeForkIT - method: test {lookup-join.MultipleBatches* - issue: https://github.com/elastic/elasticsearch/issues/129210 - - class: org.elasticsearch.entitlement.runtime.policy.FileAccessTreeTests - method: testWindowsMixedCaseAccess - issue: https://github.com/elastic/elasticsearch/issues/129167 - - class: org.elasticsearch.entitlement.runtime.policy.FileAccessTreeTests - method: testWindowsAbsolutPathAccess - issue: https://github.com/elastic/elasticsearch/issues/129168 - - class: org.elasticsearch.xpack.ml.integration.ClassificationIT - method: testWithDatastreams - issue: https://github.com/elastic/elasticsearch/issues/129457 - - class: org.elasticsearch.xpack.profiling.action.GetStatusActionIT - method: testWaitsUntilResourcesAreCreated - issue: https://github.com/elastic/elasticsearch/issues/129486 - - class: org.elasticsearch.upgrades.MlJobSnapshotUpgradeIT - method: testSnapshotUpgrader - issue: https://github.com/elastic/elasticsearch/issues/98560 - - class: org.elasticsearch.search.query.VectorIT - method: testFilteredQueryStrategy - issue: https://github.com/elastic/elasticsearch/issues/129517 - - class: org.elasticsearch.xpack.security.SecurityRolesMultiProjectIT - method: testUpdatingFileBasedRoleAffectsAllProjects - issue: https://github.com/elastic/elasticsearch/issues/129775 - - class: org.elasticsearch.qa.verify_version_constants.VerifyVersionConstantsIT - method: testLuceneVersionConstant - issue: https://github.com/elastic/elasticsearch/issues/125638 - - class: org.elasticsearch.gradle.internal.InternalDistributionBwcSetupPluginFuncTest - method: "builds distribution from branches via archives extractedAssemble [bwcDistVersion: 8.2.1, bwcProject: bugfix, expectedAssembleTaskName: +- class: "org.elasticsearch.client.RestClientSingleHostIntegTests" + issue: "https://github.com/elastic/elasticsearch/issues/102717" + method: "testRequestResetAndAbort" +- class: org.elasticsearch.packaging.test.PackagesSecurityAutoConfigurationTests + method: test20SecurityNotAutoConfiguredOnReInstallation + issue: https://github.com/elastic/elasticsearch/issues/112635 +- class: org.elasticsearch.xpack.sql.qa.single_node.JdbcSqlSpecIT + method: test {case-functions.testSelectInsertWithLcaseAndLengthWithOrderBy} + issue: https://github.com/elastic/elasticsearch/issues/112642 +- class: org.elasticsearch.xpack.sql.qa.single_node.JdbcSqlSpecIT + method: test {case-functions.testUcaseInline1} + issue: https://github.com/elastic/elasticsearch/issues/112641 +- class: org.elasticsearch.xpack.sql.qa.single_node.JdbcSqlSpecIT + method: test {case-functions.testUpperCasingTheSecondLetterFromTheRightFromFirstName} + issue: https://github.com/elastic/elasticsearch/issues/112640 +- class: org.elasticsearch.xpack.sql.qa.single_node.JdbcSqlSpecIT + method: test {case-functions.testUcaseInline3} + issue: https://github.com/elastic/elasticsearch/issues/112643 +- class: org.elasticsearch.xpack.sql.qa.security.JdbcSqlSpecIT + method: test {case-functions.testUcaseInline1} + issue: https://github.com/elastic/elasticsearch/issues/112641 +- class: org.elasticsearch.xpack.sql.qa.security.JdbcSqlSpecIT + method: test {case-functions.testUcaseInline3} + issue: https://github.com/elastic/elasticsearch/issues/112643 +- class: org.elasticsearch.xpack.sql.qa.security.JdbcSqlSpecIT + method: test {case-functions.testUpperCasingTheSecondLetterFromTheRightFromFirstName} + issue: https://github.com/elastic/elasticsearch/issues/112640 +- class: org.elasticsearch.xpack.sql.qa.security.JdbcSqlSpecIT + method: test {case-functions.testSelectInsertWithLcaseAndLengthWithOrderBy} + issue: https://github.com/elastic/elasticsearch/issues/112642 +- class: org.elasticsearch.packaging.test.WindowsServiceTests + method: test30StartStop + issue: https://github.com/elastic/elasticsearch/issues/113160 +- class: org.elasticsearch.packaging.test.WindowsServiceTests + method: test33JavaChanged + issue: https://github.com/elastic/elasticsearch/issues/113177 +- class: org.elasticsearch.packaging.test.WindowsServiceTests + method: test80JavaOptsInEnvVar + issue: https://github.com/elastic/elasticsearch/issues/113219 +- class: org.elasticsearch.packaging.test.WindowsServiceTests + method: test81JavaOptsInJvmOptions + issue: https://github.com/elastic/elasticsearch/issues/113313 +- class: org.elasticsearch.xpack.transform.integration.TransformIT + method: testStopWaitForCheckpoint + issue: https://github.com/elastic/elasticsearch/issues/106113 +- class: org.elasticsearch.xpack.remotecluster.RemoteClusterSecurityWithApmTracingRestIT + method: testTracingCrossCluster + issue: https://github.com/elastic/elasticsearch/issues/112731 +- class: org.elasticsearch.xpack.restart.MLModelDeploymentFullClusterRestartIT + method: testDeploymentSurvivesRestart {cluster=UPGRADED} + issue: https://github.com/elastic/elasticsearch/issues/115528 +- class: org.elasticsearch.xpack.shutdown.NodeShutdownIT + method: testStalledShardMigrationProperlyDetected + issue: https://github.com/elastic/elasticsearch/issues/115697 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=transform/transforms_start_stop/Verify start transform reuses destination index} + issue: https://github.com/elastic/elasticsearch/issues/115808 +- class: org.elasticsearch.xpack.application.connector.ConnectorIndexServiceTests + issue: https://github.com/elastic/elasticsearch/issues/116087 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=transform/transforms_start_stop/Test start already started transform} + issue: https://github.com/elastic/elasticsearch/issues/98802 +- class: org.elasticsearch.xpack.shutdown.NodeShutdownIT + method: testAllocationPreventedForRemoval + issue: https://github.com/elastic/elasticsearch/issues/116363 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=snapshot/20_operator_privileges_disabled/Operator only settings can be set and restored by non-operator user when operator privileges is disabled} + issue: https://github.com/elastic/elasticsearch/issues/116775 +- class: org.elasticsearch.search.basic.SearchWithRandomIOExceptionsIT + method: testRandomDirectoryIOExceptions + issue: https://github.com/elastic/elasticsearch/issues/114824 +- class: org.elasticsearch.xpack.apmdata.APMYamlTestSuiteIT + method: test {yaml=/10_apm/Test template reinstallation} + issue: https://github.com/elastic/elasticsearch/issues/116445 +- class: org.elasticsearch.versioning.ConcurrentSeqNoVersioningIT + method: testSeqNoCASLinearizability + issue: https://github.com/elastic/elasticsearch/issues/117249 +- class: org.elasticsearch.discovery.ClusterDisruptionIT + method: testAckedIndexing + issue: https://github.com/elastic/elasticsearch/issues/117024 +- class: org.elasticsearch.xpack.inference.InferenceRestIT + method: test {p0=inference/40_semantic_text_query/Query a field that uses the default ELSER 2 endpoint} + issue: https://github.com/elastic/elasticsearch/issues/117027 +- class: org.elasticsearch.xpack.inference.InferenceRestIT + method: test {p0=inference/30_semantic_text_inference/Calculates embeddings using the default ELSER 2 endpoint} + issue: https://github.com/elastic/elasticsearch/issues/117349 +- class: org.elasticsearch.xpack.inference.InferenceRestIT + method: test {p0=inference/30_semantic_text_inference_bwc/Calculates embeddings using the default ELSER 2 endpoint} + issue: https://github.com/elastic/elasticsearch/issues/117349 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=transform/transforms_reset/Test reset running transform} + issue: https://github.com/elastic/elasticsearch/issues/117473 +- class: org.elasticsearch.xpack.ml.integration.RegressionIT + method: testTwoJobsWithSameRandomizeSeedUseSameTrainingSet + issue: https://github.com/elastic/elasticsearch/issues/117805 +- class: org.elasticsearch.packaging.test.ArchiveTests + method: test44AutoConfigurationNotTriggeredOnNotWriteableConfDir + issue: https://github.com/elastic/elasticsearch/issues/118208 +- class: org.elasticsearch.packaging.test.ArchiveTests + method: test51AutoConfigurationWithPasswordProtectedKeystore + issue: https://github.com/elastic/elasticsearch/issues/118212 +- class: org.elasticsearch.xpack.ccr.rest.ShardChangesRestIT + method: testShardChangesNoOperation + issue: https://github.com/elastic/elasticsearch/issues/118800 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=transform/transforms_start_stop/Test start/stop/start transform} + issue: https://github.com/elastic/elasticsearch/issues/119508 +- class: org.elasticsearch.smoketest.MlWithSecurityIT + method: test {yaml=ml/sparse_vector_search/Test sparse_vector search with query vector and pruning config} + issue: https://github.com/elastic/elasticsearch/issues/119548 +- class: org.elasticsearch.xpack.ml.integration.ForecastIT + method: testOverflowToDisk + issue: https://github.com/elastic/elasticsearch/issues/117740 +- class: org.elasticsearch.multi_cluster.MultiClusterYamlTestSuiteIT + issue: https://github.com/elastic/elasticsearch/issues/119983 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=transform/transforms_unattended/Test unattended put and start} + issue: https://github.com/elastic/elasticsearch/issues/120019 +- class: org.elasticsearch.xpack.security.QueryableReservedRolesIT + method: testConfiguredReservedRolesAfterClosingAndOpeningIndex + issue: https://github.com/elastic/elasticsearch/issues/120127 +- class: org.elasticsearch.oldrepos.OldRepositoryAccessIT + method: testOldRepoAccess + issue: https://github.com/elastic/elasticsearch/issues/120148 +- class: org.elasticsearch.oldrepos.OldRepositoryAccessIT + method: testOldSourceOnlyRepoAccess + issue: https://github.com/elastic/elasticsearch/issues/120080 +- class: org.elasticsearch.xpack.ccr.FollowIndexSecurityIT + method: testCleanShardFollowTaskAfterDeleteFollower + issue: https://github.com/elastic/elasticsearch/issues/120339 +- class: org.elasticsearch.xpack.sql.expression.function.scalar.datetime.DateTimeToCharProcessorTests + issue: https://github.com/elastic/elasticsearch/issues/120575 +- class: org.elasticsearch.xpack.inference.DefaultEndPointsIT + method: testMultipleInferencesTriggeringDownloadAndDeploy + issue: https://github.com/elastic/elasticsearch/issues/120668 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=ml/3rd_party_deployment/Test start deployment fails while model download in progress} + issue: https://github.com/elastic/elasticsearch/issues/120810 +- class: org.elasticsearch.xpack.security.authc.service.ServiceAccountIT + method: testAuthenticateShouldNotFallThroughInCaseOfFailure + issue: https://github.com/elastic/elasticsearch/issues/120902 +- class: org.elasticsearch.backwards.MixedClusterClientYamlTestSuiteIT + method: test {p0=nodes.stats/11_indices_metrics/indices mappings exact count test for indices level} + issue: https://github.com/elastic/elasticsearch/issues/120950 +- class: org.elasticsearch.analysis.common.CommonAnalysisClientYamlTestSuiteIT + method: test {yaml=analysis-common/40_token_filters/stemmer_override file access} + issue: https://github.com/elastic/elasticsearch/issues/121625 +- class: org.elasticsearch.test.rest.ClientYamlTestSuiteIT + method: test {yaml=snapshot.delete/10_basic/Delete a snapshot asynchronously} + issue: https://github.com/elastic/elasticsearch/issues/122102 +- class: org.elasticsearch.blocks.SimpleBlocksIT + method: testConcurrentAddBlock + issue: https://github.com/elastic/elasticsearch/issues/122324 +- class: org.elasticsearch.action.admin.cluster.node.tasks.CancellableTasksIT + method: testChildrenTasksCancelledOnTimeout + issue: https://github.com/elastic/elasticsearch/issues/123568 +- class: org.elasticsearch.xpack.searchablesnapshots.FrozenSearchableSnapshotsIntegTests + method: testCreateAndRestorePartialSearchableSnapshot + issue: https://github.com/elastic/elasticsearch/issues/123773 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=snapshot/10_basic/Create a source only snapshot and then restore it} + issue: https://github.com/elastic/elasticsearch/issues/122755 +- class: org.elasticsearch.smoketest.MlWithSecurityIT + method: test {yaml=ml/data_frame_analytics_crud/Test get stats given multiple analytics} + issue: https://github.com/elastic/elasticsearch/issues/123034 +- class: org.elasticsearch.indices.recovery.IndexRecoveryIT + method: testSourceThrottling + issue: https://github.com/elastic/elasticsearch/issues/123680 +- class: org.elasticsearch.smoketest.MlWithSecurityIT + method: test {yaml=ml/3rd_party_deployment/Test start deployment fails while model download in progress} + issue: https://github.com/elastic/elasticsearch/issues/120814 +- class: org.elasticsearch.smoketest.MlWithSecurityIT + method: test {yaml=ml/start_data_frame_analytics/Test start classification analysis when the dependent variable is missing} + issue: https://github.com/elastic/elasticsearch/issues/124168 +- class: org.elasticsearch.smoketest.MlWithSecurityIT + method: test {yaml=ml/3rd_party_deployment/Test start and stop multiple deployments} + issue: https://github.com/elastic/elasticsearch/issues/124315 +- class: org.elasticsearch.xpack.restart.MLModelDeploymentFullClusterRestartIT + method: testDeploymentSurvivesRestart {cluster=OLD} + issue: https://github.com/elastic/elasticsearch/issues/124160 +- class: org.elasticsearch.packaging.test.BootstrapCheckTests + method: test20RunWithBootstrapChecks + issue: https://github.com/elastic/elasticsearch/issues/124940 +- class: org.elasticsearch.packaging.test.BootstrapCheckTests + method: test10Install + issue: https://github.com/elastic/elasticsearch/issues/124957 +- class: org.elasticsearch.smoketest.MlWithSecurityIT + method: test {yaml=ml/data_frame_analytics_crud/Test get stats on newly created config} + issue: https://github.com/elastic/elasticsearch/issues/121726 +- class: org.elasticsearch.smoketest.MlWithSecurityIT + method: test {yaml=ml/data_frame_analytics_cat_apis/Test cat data frame analytics all jobs with header and column selection} + issue: https://github.com/elastic/elasticsearch/issues/125641 +- class: org.elasticsearch.smoketest.MlWithSecurityIT + method: test {yaml=ml/data_frame_analytics_cat_apis/Test cat data frame analytics single job with header} + issue: https://github.com/elastic/elasticsearch/issues/125642 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=transform/transforms_start_stop/Test schedule_now on an already started transform} + issue: https://github.com/elastic/elasticsearch/issues/120720 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=transform/transforms_start_stop/Verify start transform creates destination index with appropriate mapping} + issue: https://github.com/elastic/elasticsearch/issues/125854 +- class: org.elasticsearch.xpack.core.common.notifications.AbstractAuditorTests + method: testRecreateTemplateWhenDeleted + issue: https://github.com/elastic/elasticsearch/issues/123232 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=ml/start_data_frame_analytics/Test start given dest index is not empty} + issue: https://github.com/elastic/elasticsearch/issues/125909 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=transform/transforms_stats/Test get transform stats with timeout} + issue: https://github.com/elastic/elasticsearch/issues/125975 +- class: org.elasticsearch.action.RejectionActionIT + method: testSimulatedSearchRejectionLoad + issue: https://github.com/elastic/elasticsearch/issues/125901 +- class: org.elasticsearch.search.CCSDuelIT + method: testTerminateAfter + issue: https://github.com/elastic/elasticsearch/issues/126085 +- class: org.elasticsearch.search.basic.SearchWithRandomDisconnectsIT + method: testSearchWithRandomDisconnects + issue: https://github.com/elastic/elasticsearch/issues/122707 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=transform/transforms_reset/Test force reseting a running transform} + issue: https://github.com/elastic/elasticsearch/issues/126240 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=transform/transforms_stats/Test get transform stats} + issue: https://github.com/elastic/elasticsearch/issues/126270 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=ml/start_data_frame_analytics/Test start classification analysis when the dependent variable cardinality is too low} + issue: https://github.com/elastic/elasticsearch/issues/126299 +- class: org.elasticsearch.smoketest.MlWithSecurityIT + method: test {yaml=ml/start_data_frame_analytics/Test start classification analysis when the dependent variable cardinality is too low} + issue: https://github.com/elastic/elasticsearch/issues/123200 +- class: org.elasticsearch.smoketest.MlWithSecurityIT + method: test {yaml=ml/trained_model_cat_apis/Test cat trained models} + issue: https://github.com/elastic/elasticsearch/issues/125750 +- class: org.elasticsearch.ingest.geoip.EnterpriseGeoIpDownloaderIT + method: testEnterpriseDownloaderTask + issue: https://github.com/elastic/elasticsearch/issues/126124 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=transform/transforms_start_stop/Test start/stop only starts/stops specified transform} + issue: https://github.com/elastic/elasticsearch/issues/126466 +- class: org.elasticsearch.smoketest.MlWithSecurityIT + method: test {yaml=ml/get_trained_model_stats/Test get stats given trained models} + issue: https://github.com/elastic/elasticsearch/issues/126510 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=transform/transforms_stats/Test get multiple transform stats} + issue: https://github.com/elastic/elasticsearch/issues/126567 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=transform/transforms_stats/Test get single transform stats when it does not have a task} + issue: https://github.com/elastic/elasticsearch/issues/126568 +- class: org.elasticsearch.repositories.blobstore.testkit.rest.SnapshotRepoTestKitClientYamlTestSuiteIT + method: test {p0=/10_analyze/Analysis without details} + issue: https://github.com/elastic/elasticsearch/issues/126569 +- class: org.elasticsearch.xpack.esql.action.EsqlActionIT + method: testQueryOnEmptyDataIndex + issue: https://github.com/elastic/elasticsearch/issues/126580 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=transform/transforms_start_stop/Test start/stop/start continuous transform} + issue: https://github.com/elastic/elasticsearch/issues/126755 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=transform/transforms_stats/Test get multiple transform stats where one does not have a task} + issue: https://github.com/elastic/elasticsearch/issues/126863 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=ml/inference_crud/Test delete given unused trained model} + issue: https://github.com/elastic/elasticsearch/issues/126881 +- class: org.elasticsearch.index.engine.CompletionStatsCacheTests + method: testCompletionStatsCache + issue: https://github.com/elastic/elasticsearch/issues/126910 +- class: org.elasticsearch.xpack.ml.integration.ClassificationHousePricingIT + method: testFeatureImportanceValues + issue: https://github.com/elastic/elasticsearch/issues/124341 +- class: org.elasticsearch.cli.keystore.AddStringKeyStoreCommandTests + method: testStdinWithMultipleValues + issue: https://github.com/elastic/elasticsearch/issues/126882 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=ml/data_frame_analytics_cat_apis/Test cat data frame analytics all jobs with header} + issue: https://github.com/elastic/elasticsearch/issues/127625 +- class: org.elasticsearch.xpack.ccr.action.ShardFollowTaskReplicationTests + method: testChangeFollowerHistoryUUID + issue: https://github.com/elastic/elasticsearch/issues/127680 +- class: org.elasticsearch.action.admin.indices.diskusage.IndexDiskUsageAnalyzerTests + method: testKnnVectors + issue: https://github.com/elastic/elasticsearch/issues/127689 +- class: org.elasticsearch.backwards.MixedClusterClientYamlTestSuiteIT + method: test {p0=search/350_point_in_time/point-in-time with index filter} + issue: https://github.com/elastic/elasticsearch/issues/127741 +- class: org.elasticsearch.xpack.esql.action.CrossClusterQueryWithPartialResultsIT + method: testOneRemoteClusterPartial + issue: https://github.com/elastic/elasticsearch/issues/124055 +- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT + method: test {csv-spec:lookup-join.MvJoinKeyOnTheLookupIndex} + issue: https://github.com/elastic/elasticsearch/issues/128030 +- class: org.elasticsearch.packaging.test.EnrollmentProcessTests + method: test20DockerAutoFormCluster + issue: https://github.com/elastic/elasticsearch/issues/128113 +- class: org.elasticsearch.ingest.geoip.GeoIpDownloaderCliIT + method: testInvalidTimestamp + issue: https://github.com/elastic/elasticsearch/issues/128284 +- class: org.elasticsearch.packaging.test.TemporaryDirectoryConfigTests + method: test21AcceptsCustomPathInDocker + issue: https://github.com/elastic/elasticsearch/issues/128114 +- class: org.elasticsearch.xpack.esql.plugin.DataNodeRequestSenderIT + method: testSearchWhileRelocating + issue: https://github.com/elastic/elasticsearch/issues/128500 +- class: org.elasticsearch.compute.operator.LimitOperatorTests + method: testEarlyTermination + issue: https://github.com/elastic/elasticsearch/issues/128721 +- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeForkIT + method: test {csv-spec:lookup-join.EnrichLookupStatsBug} + issue: https://github.com/elastic/elasticsearch/issues/129228 +- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeForkIT + method: test {lookup-join.MultipleBatches* + issue: https://github.com/elastic/elasticsearch/issues/129210 +- class: org.elasticsearch.entitlement.runtime.policy.FileAccessTreeTests + method: testWindowsMixedCaseAccess + issue: https://github.com/elastic/elasticsearch/issues/129167 +- class: org.elasticsearch.entitlement.runtime.policy.FileAccessTreeTests + method: testWindowsAbsolutPathAccess + issue: https://github.com/elastic/elasticsearch/issues/129168 +- class: org.elasticsearch.xpack.ml.integration.ClassificationIT + method: testWithDatastreams + issue: https://github.com/elastic/elasticsearch/issues/129457 +- class: org.elasticsearch.xpack.profiling.action.GetStatusActionIT + method: testWaitsUntilResourcesAreCreated + issue: https://github.com/elastic/elasticsearch/issues/129486 +- class: org.elasticsearch.upgrades.MlJobSnapshotUpgradeIT + method: testSnapshotUpgrader + issue: https://github.com/elastic/elasticsearch/issues/98560 +- class: org.elasticsearch.search.query.VectorIT + method: testFilteredQueryStrategy + issue: https://github.com/elastic/elasticsearch/issues/129517 +- class: org.elasticsearch.xpack.security.SecurityRolesMultiProjectIT + method: testUpdatingFileBasedRoleAffectsAllProjects + issue: https://github.com/elastic/elasticsearch/issues/129775 +- class: org.elasticsearch.qa.verify_version_constants.VerifyVersionConstantsIT + method: testLuceneVersionConstant + issue: https://github.com/elastic/elasticsearch/issues/125638 +- class: org.elasticsearch.gradle.internal.InternalDistributionBwcSetupPluginFuncTest + method: "builds distribution from branches via archives extractedAssemble [bwcDistVersion: 8.2.1, bwcProject: bugfix, expectedAssembleTaskName: extractedAssemble, #2]" - issue: https://github.com/elastic/elasticsearch/issues/119871 - - class: org.elasticsearch.action.support.ThreadedActionListenerTests - method: testRejectionHandling - issue: https://github.com/elastic/elasticsearch/issues/130129 - - class: org.elasticsearch.compute.aggregation.TopIntAggregatorFunctionTests - method: testManyInitialManyPartialFinalRunnerThrowing - issue: https://github.com/elastic/elasticsearch/issues/130145 - - class: org.elasticsearch.xpack.searchablesnapshots.cache.shared.NodesCachesStatsIntegTests - method: testNodesCachesStats - issue: https://github.com/elastic/elasticsearch/issues/129863 - - class: org.elasticsearch.index.IndexingPressureIT - method: testWriteCanRejectOnPrimaryBasedOnMaxOperationSize - issue: https://github.com/elastic/elasticsearch/issues/130281 - - class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT - method: test {csv-spec:lookup-join.MvJoinKeyOnFrom} - issue: https://github.com/elastic/elasticsearch/issues/130296 - - class: org.elasticsearch.xpack.esql.inference.bulk.BulkInferenceExecutorTests - method: testSuccessfulExecution - issue: https://github.com/elastic/elasticsearch/issues/130306 - - class: org.elasticsearch.gradle.LoggedExecFuncTest - method: failed tasks output logged to console when spooling true - issue: https://github.com/elastic/elasticsearch/issues/119509 - - class: org.elasticsearch.xpack.esql.qa.single_node.EsqlSpecIT - method: test {csv-spec:lookup-join.MvJoinKeyFromRow} - issue: https://github.com/elastic/elasticsearch/issues/130642 - - class: org.elasticsearch.indices.stats.IndexStatsIT - method: testFilterCacheStats - issue: https://github.com/elastic/elasticsearch/issues/124447 - - class: org.elasticsearch.backwards.MixedClusterClientYamlTestSuiteIT - method: test {p0=mtermvectors/10_basic/Tests catching other exceptions per item} - issue: https://github.com/elastic/elasticsearch/issues/122414 - - class: org.elasticsearch.search.SearchWithRejectionsIT - method: testOpenContextsAfterRejections - issue: https://github.com/elastic/elasticsearch/issues/130821 - - class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT - method: test {csv-spec:lookup-join.MvJoinKeyOnFromAfterStats} - issue: https://github.com/elastic/elasticsearch/issues/131148 - - class: org.elasticsearch.xpack.esql.ccq.MultiClustersIT - method: testLookupJoinAliases - issue: https://github.com/elastic/elasticsearch/issues/131166 - - class: org.elasticsearch.packaging.test.DockerTests - method: test090SecurityCliPackaging - issue: https://github.com/elastic/elasticsearch/issues/131107 - - class: org.elasticsearch.xpack.esql.expression.function.fulltext.ScoreTests - method: testSerializationOfSimple {TestCase=} - issue: https://github.com/elastic/elasticsearch/issues/131334 - - class: org.elasticsearch.xpack.esql.analysis.VerifierTests - method: testMatchInsideEval - issue: https://github.com/elastic/elasticsearch/issues/131336 - - class: org.elasticsearch.packaging.test.DockerTests - method: test071BindMountCustomPathWithDifferentUID - issue: https://github.com/elastic/elasticsearch/issues/120917 - - class: org.elasticsearch.packaging.test.DockerTests - method: test171AdditionalCliOptionsAreForwarded - issue: https://github.com/elastic/elasticsearch/issues/120925 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=ml/delete_expired_data/Test delete expired data with body parameters} - issue: https://github.com/elastic/elasticsearch/issues/131364 - - class: org.elasticsearch.packaging.test.DockerTests - method: test070BindMountCustomPathConfAndJvmOptions - issue: https://github.com/elastic/elasticsearch/issues/131366 - - class: org.elasticsearch.packaging.test.DockerTests - method: test140CgroupOsStatsAreAvailable - issue: https://github.com/elastic/elasticsearch/issues/131372 - - class: org.elasticsearch.packaging.test.DockerTests - method: test130JavaHasCorrectOwnership - issue: https://github.com/elastic/elasticsearch/issues/131369 - - class: org.elasticsearch.xpack.downsample.DataStreamLifecycleDownsampleDisruptionIT - method: testDataStreamLifecycleDownsampleRollingRestart - issue: https://github.com/elastic/elasticsearch/issues/131394 - - class: org.elasticsearch.packaging.test.DockerTests - method: test072RunEsAsDifferentUserAndGroup - issue: https://github.com/elastic/elasticsearch/issues/131412 - - class: org.elasticsearch.xpack.esql.heap_attack.HeapAttackIT - method: testLookupExplosionNoFetch - issue: https://github.com/elastic/elasticsearch/issues/128720 - - class: org.elasticsearch.packaging.test.DockerTests - method: test050BasicApiTests - issue: https://github.com/elastic/elasticsearch/issues/120911 - - class: org.elasticsearch.xpack.esql.action.EsqlActionBreakerIT - method: testFromEvalStats - issue: https://github.com/elastic/elasticsearch/issues/131503 - - class: org.elasticsearch.xpack.downsample.DownsampleWithBasicRestIT - method: test {p0=downsample-with-security/10_basic/Downsample index} - issue: https://github.com/elastic/elasticsearch/issues/131513 - - class: org.elasticsearch.xpack.search.CrossClusterAsyncSearchIT - method: testCancellationViaTimeoutWithAllowPartialResultsSetToFalse - issue: https://github.com/elastic/elasticsearch/issues/131248 - - class: org.elasticsearch.xpack.esql.action.CrossClusterQueryWithPartialResultsIT - method: testPartialResults - issue: https://github.com/elastic/elasticsearch/issues/131481 - - class: org.elasticsearch.packaging.test.DockerTests - method: test010Install - issue: https://github.com/elastic/elasticsearch/issues/131376 - - class: org.elasticsearch.compute.lucene.read.SortedSetOrdinalsBuilderTests - method: testReader - issue: https://github.com/elastic/elasticsearch/issues/131573 - - class: org.elasticsearch.xpack.esql.ccq.MultiClustersIT - method: testLookupJoinAliasesSkipOld - issue: https://github.com/elastic/elasticsearch/issues/131697 - - class: org.elasticsearch.indices.cluster.RemoteSearchForceConnectTimeoutIT - method: testTimeoutSetting - issue: https://github.com/elastic/elasticsearch/issues/131656 - - class: org.elasticsearch.packaging.test.DockerTests - method: test151MachineDependentHeapWithSizeOverride - issue: https://github.com/elastic/elasticsearch/issues/123437 - - class: org.elasticsearch.xpack.restart.FullClusterRestartIT - method: testWatcherWithApiKey {cluster=UPGRADED} - issue: https://github.com/elastic/elasticsearch/issues/131964 - - class: org.elasticsearch.xpack.remotecluster.CrossClusterEsqlRCS1EnrichUnavailableRemotesIT - method: testEsqlEnrichWithSkipUnavailable - issue: https://github.com/elastic/elasticsearch/issues/132078 - - class: org.elasticsearch.index.engine.MergeWithLowDiskSpaceIT - method: testRelocationWhileForceMerging - issue: https://github.com/elastic/elasticsearch/issues/131789 - - class: org.elasticsearch.indices.cluster.FieldCapsForceConnectTimeoutIT - method: testTimeoutSetting - issue: https://github.com/elastic/elasticsearch/issues/132179 - - class: org.elasticsearch.test.rest.yaml.MDPYamlTestSuiteIT - method: test {yaml=mdp/10_basic/Index using shared data path} - issue: https://github.com/elastic/elasticsearch/issues/132223 - - class: org.elasticsearch.xpack.sql.qa.mixed_node.SqlCompatIT - method: testNullsOrderWithMissingOrderSupportQueryingNewNode - issue: https://github.com/elastic/elasticsearch/issues/132249 - - class: org.elasticsearch.common.logging.JULBridgeTests - method: testThrowable - issue: https://github.com/elastic/elasticsearch/issues/132280 - - class: org.elasticsearch.datastreams.DataStreamsClientYamlTestSuiteIT - method: test {p0=data_stream/10_basic/Create hidden data stream with match all template} - issue: https://github.com/elastic/elasticsearch/issues/132298 - - class: org.elasticsearch.xpack.ml.integration.AutodetectMemoryLimitIT - method: testManyDistinctOverFields - issue: https://github.com/elastic/elasticsearch/issues/132308 - - class: org.elasticsearch.xpack.ml.integration.AutodetectMemoryLimitIT - method: testTooManyByAndOverFields - issue: https://github.com/elastic/elasticsearch/issues/132310 - - class: org.elasticsearch.xpack.esql.action.CrossClusterAsyncQueryIT - method: testBadAsyncId - issue: https://github.com/elastic/elasticsearch/issues/132353 - - class: org.elasticsearch.xpack.esql.inference.completion.CompletionOperatorTests - method: testSimpleCircuitBreaking - issue: https://github.com/elastic/elasticsearch/issues/132382 - - class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecIT - method: test {csv-spec:lookup-join.MvJoinKeyOnFrom} - issue: https://github.com/elastic/elasticsearch/issues/132554 - - class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT - method: test {csv-spec:lookup-join.MvJoinKeyFromRow} - issue: https://github.com/elastic/elasticsearch/issues/132555 - - class: org.elasticsearch.xpack.esql.qa.single_node.EsqlSpecIT - method: test {csv-spec:spatial.ConvertFromStringParseError} - issue: https://github.com/elastic/elasticsearch/issues/132558 - - class: org.elasticsearch.xpack.logsdb.qa.BulkChallengeRestIT - method: testEsqlSource - issue: https://github.com/elastic/elasticsearch/issues/132600 - - class: org.elasticsearch.xpack.logsdb.qa.StandardVersusStandardReindexedIntoLogsDbChallengeRestIT - method: testEsqlSource - issue: https://github.com/elastic/elasticsearch/issues/132601 - - class: org.elasticsearch.xpack.logsdb.qa.StoredSourceLogsDbVersusReindexedLogsDbChallengeRestIT - method: testEsqlSource - issue: https://github.com/elastic/elasticsearch/issues/132602 - - class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlSpecIT - method: test {csv-spec:lookup-join.MvJoinKeyFromRowExpanded} - issue: https://github.com/elastic/elasticsearch/issues/132604 - - class: org.elasticsearch.xpack.esql.plugin.DataNodeRequestSenderTests - method: testLimitConcurrentNodes - issue: https://github.com/elastic/elasticsearch/issues/132607 - - class: org.elasticsearch.xpack.test.rest.XPackRestIT - method: test {p0=esql/60_usage/Basic ESQL usage output (telemetry) non-snapshot version} - issue: https://github.com/elastic/elasticsearch/issues/132608 - - class: org.elasticsearch.xpack.ml.integration.RevertModelSnapshotIT - method: testRevertModelSnapshot_DeleteInterveningResults - issue: https://github.com/elastic/elasticsearch/issues/132349 - - class: org.elasticsearch.xpack.sql.action.SqlSearchPageTimeoutIT - method: testSearchContextIsCleanedUpAfterPageTimeoutForAggregationQueries - issue: https://github.com/elastic/elasticsearch/issues/132619 + issue: https://github.com/elastic/elasticsearch/issues/119871 +- class: org.elasticsearch.action.support.ThreadedActionListenerTests + method: testRejectionHandling + issue: https://github.com/elastic/elasticsearch/issues/130129 +- class: org.elasticsearch.compute.aggregation.TopIntAggregatorFunctionTests + method: testManyInitialManyPartialFinalRunnerThrowing + issue: https://github.com/elastic/elasticsearch/issues/130145 +- class: org.elasticsearch.xpack.searchablesnapshots.cache.shared.NodesCachesStatsIntegTests + method: testNodesCachesStats + issue: https://github.com/elastic/elasticsearch/issues/129863 +- class: org.elasticsearch.index.IndexingPressureIT + method: testWriteCanRejectOnPrimaryBasedOnMaxOperationSize + issue: https://github.com/elastic/elasticsearch/issues/130281 +- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT + method: test {csv-spec:lookup-join.MvJoinKeyOnFrom} + issue: https://github.com/elastic/elasticsearch/issues/130296 +- class: org.elasticsearch.xpack.esql.inference.bulk.BulkInferenceExecutorTests + method: testSuccessfulExecution + issue: https://github.com/elastic/elasticsearch/issues/130306 +- class: org.elasticsearch.gradle.LoggedExecFuncTest + method: failed tasks output logged to console when spooling true + issue: https://github.com/elastic/elasticsearch/issues/119509 +- class: org.elasticsearch.xpack.esql.qa.single_node.EsqlSpecIT + method: test {csv-spec:lookup-join.MvJoinKeyFromRow} + issue: https://github.com/elastic/elasticsearch/issues/130642 +- class: org.elasticsearch.indices.stats.IndexStatsIT + method: testFilterCacheStats + issue: https://github.com/elastic/elasticsearch/issues/124447 +- class: org.elasticsearch.backwards.MixedClusterClientYamlTestSuiteIT + method: test {p0=mtermvectors/10_basic/Tests catching other exceptions per item} + issue: https://github.com/elastic/elasticsearch/issues/122414 +- class: org.elasticsearch.search.SearchWithRejectionsIT + method: testOpenContextsAfterRejections + issue: https://github.com/elastic/elasticsearch/issues/130821 +- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT + method: test {csv-spec:lookup-join.MvJoinKeyOnFromAfterStats} + issue: https://github.com/elastic/elasticsearch/issues/131148 +- class: org.elasticsearch.xpack.esql.ccq.MultiClustersIT + method: testLookupJoinAliases + issue: https://github.com/elastic/elasticsearch/issues/131166 +- class: org.elasticsearch.packaging.test.DockerTests + method: test090SecurityCliPackaging + issue: https://github.com/elastic/elasticsearch/issues/131107 +- class: org.elasticsearch.xpack.esql.expression.function.fulltext.ScoreTests + method: testSerializationOfSimple {TestCase=} + issue: https://github.com/elastic/elasticsearch/issues/131334 +- class: org.elasticsearch.xpack.esql.analysis.VerifierTests + method: testMatchInsideEval + issue: https://github.com/elastic/elasticsearch/issues/131336 +- class: org.elasticsearch.packaging.test.DockerTests + method: test071BindMountCustomPathWithDifferentUID + issue: https://github.com/elastic/elasticsearch/issues/120917 +- class: org.elasticsearch.packaging.test.DockerTests + method: test171AdditionalCliOptionsAreForwarded + issue: https://github.com/elastic/elasticsearch/issues/120925 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=ml/delete_expired_data/Test delete expired data with body parameters} + issue: https://github.com/elastic/elasticsearch/issues/131364 +- class: org.elasticsearch.packaging.test.DockerTests + method: test070BindMountCustomPathConfAndJvmOptions + issue: https://github.com/elastic/elasticsearch/issues/131366 +- class: org.elasticsearch.packaging.test.DockerTests + method: test140CgroupOsStatsAreAvailable + issue: https://github.com/elastic/elasticsearch/issues/131372 +- class: org.elasticsearch.packaging.test.DockerTests + method: test130JavaHasCorrectOwnership + issue: https://github.com/elastic/elasticsearch/issues/131369 +- class: org.elasticsearch.xpack.downsample.DataStreamLifecycleDownsampleDisruptionIT + method: testDataStreamLifecycleDownsampleRollingRestart + issue: https://github.com/elastic/elasticsearch/issues/131394 +- class: org.elasticsearch.packaging.test.DockerTests + method: test072RunEsAsDifferentUserAndGroup + issue: https://github.com/elastic/elasticsearch/issues/131412 +- class: org.elasticsearch.xpack.esql.heap_attack.HeapAttackIT + method: testLookupExplosionNoFetch + issue: https://github.com/elastic/elasticsearch/issues/128720 +- class: org.elasticsearch.packaging.test.DockerTests + method: test050BasicApiTests + issue: https://github.com/elastic/elasticsearch/issues/120911 +- class: org.elasticsearch.xpack.esql.action.EsqlActionBreakerIT + method: testFromEvalStats + issue: https://github.com/elastic/elasticsearch/issues/131503 +- class: org.elasticsearch.xpack.downsample.DownsampleWithBasicRestIT + method: test {p0=downsample-with-security/10_basic/Downsample index} + issue: https://github.com/elastic/elasticsearch/issues/131513 +- class: org.elasticsearch.xpack.search.CrossClusterAsyncSearchIT + method: testCancellationViaTimeoutWithAllowPartialResultsSetToFalse + issue: https://github.com/elastic/elasticsearch/issues/131248 +- class: org.elasticsearch.xpack.esql.action.CrossClusterQueryWithPartialResultsIT + method: testPartialResults + issue: https://github.com/elastic/elasticsearch/issues/131481 +- class: org.elasticsearch.packaging.test.DockerTests + method: test010Install + issue: https://github.com/elastic/elasticsearch/issues/131376 +- class: org.elasticsearch.compute.lucene.read.SortedSetOrdinalsBuilderTests + method: testReader + issue: https://github.com/elastic/elasticsearch/issues/131573 +- class: org.elasticsearch.xpack.esql.ccq.MultiClustersIT + method: testLookupJoinAliasesSkipOld + issue: https://github.com/elastic/elasticsearch/issues/131697 +- class: org.elasticsearch.indices.cluster.RemoteSearchForceConnectTimeoutIT + method: testTimeoutSetting + issue: https://github.com/elastic/elasticsearch/issues/131656 +- class: org.elasticsearch.packaging.test.DockerTests + method: test151MachineDependentHeapWithSizeOverride + issue: https://github.com/elastic/elasticsearch/issues/123437 +- class: org.elasticsearch.xpack.restart.FullClusterRestartIT + method: testWatcherWithApiKey {cluster=UPGRADED} + issue: https://github.com/elastic/elasticsearch/issues/131964 +- class: org.elasticsearch.xpack.remotecluster.CrossClusterEsqlRCS1EnrichUnavailableRemotesIT + method: testEsqlEnrichWithSkipUnavailable + issue: https://github.com/elastic/elasticsearch/issues/132078 +- class: org.elasticsearch.index.engine.MergeWithLowDiskSpaceIT + method: testRelocationWhileForceMerging + issue: https://github.com/elastic/elasticsearch/issues/131789 +- class: org.elasticsearch.indices.cluster.FieldCapsForceConnectTimeoutIT + method: testTimeoutSetting + issue: https://github.com/elastic/elasticsearch/issues/132179 +- class: org.elasticsearch.test.rest.yaml.MDPYamlTestSuiteIT + method: test {yaml=mdp/10_basic/Index using shared data path} + issue: https://github.com/elastic/elasticsearch/issues/132223 +- class: org.elasticsearch.xpack.sql.qa.mixed_node.SqlCompatIT + method: testNullsOrderWithMissingOrderSupportQueryingNewNode + issue: https://github.com/elastic/elasticsearch/issues/132249 +- class: org.elasticsearch.common.logging.JULBridgeTests + method: testThrowable + issue: https://github.com/elastic/elasticsearch/issues/132280 +- class: org.elasticsearch.datastreams.DataStreamsClientYamlTestSuiteIT + method: test {p0=data_stream/10_basic/Create hidden data stream with match all template} + issue: https://github.com/elastic/elasticsearch/issues/132298 +- class: org.elasticsearch.xpack.ml.integration.AutodetectMemoryLimitIT + method: testManyDistinctOverFields + issue: https://github.com/elastic/elasticsearch/issues/132308 +- class: org.elasticsearch.xpack.ml.integration.AutodetectMemoryLimitIT + method: testTooManyByAndOverFields + issue: https://github.com/elastic/elasticsearch/issues/132310 +- class: org.elasticsearch.xpack.esql.action.CrossClusterAsyncQueryIT + method: testBadAsyncId + issue: https://github.com/elastic/elasticsearch/issues/132353 +- class: org.elasticsearch.xpack.esql.inference.completion.CompletionOperatorTests + method: testSimpleCircuitBreaking + issue: https://github.com/elastic/elasticsearch/issues/132382 +- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecIT + method: test {csv-spec:lookup-join.MvJoinKeyOnFrom} + issue: https://github.com/elastic/elasticsearch/issues/132554 +- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT + method: test {csv-spec:lookup-join.MvJoinKeyFromRow} + issue: https://github.com/elastic/elasticsearch/issues/132555 +- class: org.elasticsearch.xpack.esql.qa.single_node.EsqlSpecIT + method: test {csv-spec:spatial.ConvertFromStringParseError} + issue: https://github.com/elastic/elasticsearch/issues/132558 +- class: org.elasticsearch.xpack.logsdb.qa.BulkChallengeRestIT + method: testEsqlSource + issue: https://github.com/elastic/elasticsearch/issues/132600 +- class: org.elasticsearch.xpack.logsdb.qa.StandardVersusStandardReindexedIntoLogsDbChallengeRestIT + method: testEsqlSource + issue: https://github.com/elastic/elasticsearch/issues/132601 +- class: org.elasticsearch.xpack.logsdb.qa.StoredSourceLogsDbVersusReindexedLogsDbChallengeRestIT + method: testEsqlSource + issue: https://github.com/elastic/elasticsearch/issues/132602 +- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlSpecIT + method: test {csv-spec:lookup-join.MvJoinKeyFromRowExpanded} + issue: https://github.com/elastic/elasticsearch/issues/132604 +- class: org.elasticsearch.xpack.esql.plugin.DataNodeRequestSenderTests + method: testLimitConcurrentNodes + issue: https://github.com/elastic/elasticsearch/issues/132607 +- class: org.elasticsearch.xpack.test.rest.XPackRestIT + method: test {p0=esql/60_usage/Basic ESQL usage output (telemetry) non-snapshot version} + issue: https://github.com/elastic/elasticsearch/issues/132608 +- class: org.elasticsearch.xpack.ml.integration.RevertModelSnapshotIT + method: testRevertModelSnapshot_DeleteInterveningResults + issue: https://github.com/elastic/elasticsearch/issues/132349 +- class: org.elasticsearch.xpack.sql.action.SqlSearchPageTimeoutIT + method: testSearchContextIsCleanedUpAfterPageTimeoutForAggregationQueries + issue: https://github.com/elastic/elasticsearch/issues/132619 # Examples: #