forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmuted-tests.yml
More file actions
843 lines (842 loc) · 54.5 KB
/
Copy pathmuted-tests.yml
File metadata and controls
843 lines (842 loc) · 54.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
tests:
- 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.xpack.profiling.action.GetStatusActionIT
method: testWaitsUntilResourcesAreCreated
issue: https://github.com/elastic/elasticsearch/issues/129486
- class: org.elasticsearch.xpack.inference.action.filter.ShardBulkInferenceActionFilterBasicLicenseIT
method: testLicenseInvalidForInference {p0=true}
issue: https://github.com/elastic/elasticsearch/issues/137690
- class: org.elasticsearch.xpack.inference.action.filter.ShardBulkInferenceActionFilterBasicLicenseIT
method: testLicenseInvalidForInference {p0=false}
issue: https://github.com/elastic/elasticsearch/issues/137691
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecSpatialIT
method: test {csv-spec:spatial.convertFromStringParseError}
issue: https://github.com/elastic/elasticsearch/issues/139213
- class: org.elasticsearch.xpack.analytics.cumulativecardinality.CumulativeCardinalityAggregatorTests
method: testSimple
issue: https://github.com/elastic/elasticsearch/issues/142408
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT
method: test {feature:METRICS}
issue: https://github.com/elastic/elasticsearch/issues/155496
- class: org.elasticsearch.xpack.esql.qa.multi_node.GenerativeIT
method: test {feature:METRICS}
issue: https://github.com/elastic/elasticsearch/issues/155496
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecUnmappedLoadIT
method: test {csv-spec:unmapped-load.loadUnmappedFieldsMultiIndexForkWithMvExpand}
issue: https://github.com/elastic/elasticsearch/issues/155505
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecUnmappedLoadIT
method: test {csv-spec:unmapped-load.loadUnmappedFieldsMultiIndexForkWithMvExpand}
issue: https://github.com/elastic/elasticsearch/issues/155505
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecUnmappedLoadIT
method: test {csv-spec:unmapped-load.partiallyUnmappedSmallNumericFieldIsWidened}
issue: https://github.com/elastic/elasticsearch/issues/155505
- class: org.elasticsearch.xpack.application.OpenAiServiceUpgradeIT
method: testOpenAiEmbeddings {upgradedNodes=3}
issue: https://github.com/elastic/elasticsearch/issues/144440
- class: org.elasticsearch.xpack.esql.planner.LocalExecutionPlannerTests
method: testLuceneTopNSourceOperator {estimatedRowSizeIsHuge=true}
issue: https://github.com/elastic/elasticsearch/issues/152799
- class: org.elasticsearch.xpack.esql.CsvIT
method: test {csv-spec:spatial.convertCartesianFromStringParseError}
issue: https://github.com/elastic/elasticsearch/issues/144580
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecSpatialShapesIT
method: test {csv-spec:spatial_shapes.convertFromStringParseError}
issue: https://github.com/elastic/elasticsearch/issues/144672
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecSpatialShapesIT
method: test {csv-spec:spatial_shapes.convertFromStringParseError}
issue: https://github.com/elastic/elasticsearch/issues/144672
- class: org.elasticsearch.xpack.esql.CsvIT
method: test {csv-spec:spatial_shapes.convertFromStringParseError}
issue: https://github.com/elastic/elasticsearch/issues/145655
- class: org.elasticsearch.xpack.autoscaling.storage.ReactiveStorageIT
method: testScaleWhileShrinking
issue: https://github.com/elastic/elasticsearch/issues/145669
- class: org.elasticsearch.xpack.esql.expression.function.scalar.multivalue.MvPercentileTests
method: "testEvaluateBlockWithNulls {TestCase=field: <random mv DEDUPLICATED_UNORDERED doubles>, percentile: <positive int>}"
issue: https://github.com/elastic/elasticsearch/issues/145886
- class: org.elasticsearch.xpack.esql.expression.function.scalar.multivalue.MvPercentileTests
method: "testEvaluateBlockWithNulls {TestCase=field: <random mv DEDUPLICATED_AND_SORTED_ASCENDING doubles>, percentile: <positive int>}"
issue: https://github.com/elastic/elasticsearch/issues/145887
- class: org.elasticsearch.xpack.esql.expression.function.scalar.multivalue.MvPercentileTests
method: "testEvaluateBlockWithNulls {TestCase=field: <random mv SORTED_ASCENDING doubles>, percentile: <positive int>}"
issue: https://github.com/elastic/elasticsearch/issues/145888
- class: org.elasticsearch.xpack.esql.expression.function.scalar.multivalue.MvPercentileTests
method: "testEvaluateBlockWithNulls {TestCase=field: <random mv UNORDERED doubles>, percentile: <positive int>}"
issue: https://github.com/elastic/elasticsearch/issues/145889
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecLookupJoinIT
method: test {csv-spec:lookup-join.mvKeywordFieldJoinWarningsFromLeftSide}
issue: https://github.com/elastic/elasticsearch/issues/145904
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecLookupJoinIT
method: test {csv-spec:lookup-join.mvKeywordFieldJoinWarningsFromLeftSide}
issue: https://github.com/elastic/elasticsearch/issues/145904
- class: org.elasticsearch.cluster.routing.allocation.decider.WriteLoadConstraintDeciderIT
method: testMaxQueueLatencyMetricIsPublished
issue: https://github.com/elastic/elasticsearch/issues/146283
- class: org.elasticsearch.xpack.ml.integration.DatafeedJobsIT
method: testStopLookback_forceTrue_closeJobFalse
issue: https://github.com/elastic/elasticsearch/issues/146955
- class: org.elasticsearch.xpack.prometheus.PrometheusMetadataRestIT
method: testMultipleEntriesForSameMetricAcrossStreams
issue: https://github.com/elastic/elasticsearch/issues/147170
# Examples:
#
# Mute a single test case in a YAML test suite:
# - class: org.elasticsearch.analysis.common.CommonAnalysisClientYamlTestSuiteIT
# method: test {yaml=analysis-common/30_tokenizers/letter}
# issue: https://github.com/elastic/elasticsearch/...
#
# Mute several methods of a Java test:
# - class: org.elasticsearch.common.CharArraysTests
# methods:
# - testCharsBeginsWith
# - testCharsToBytes
# - testConstantTimeEquals
# issue: https://github.com/elastic/elasticsearch/...
#
# Mute an entire test class:
# - class: org.elasticsearch.common.unit.TimeValueTests
# issue: https://github.com/elastic/elasticsearch/...
#
# Mute a single method in a test class:
# - class: org.elasticsearch.xpack.esql.expression.function.scalar.convert.ToIPTests
# method: testCrankyEvaluateBlockWithoutNulls
# issue: https://github.com/elastic/elasticsearch/...
#
# Mute a single test in an ES|QL csv-spec test file:
# - class: "org.elasticsearch.xpack.esql.CsvTests"
# method: "test {union_types.MultiIndexIpStringStatsInline}"
# issue: "https://github.com/elastic/elasticsearch/..."
# Note that this mutes for the unit-test-like CsvTests only.
# Muting all the integration tests can be done using the class "org.elasticsearch.xpack.esql.**".
# To mute all 3 tests safely everywhere use:
# - class: "org.elasticsearch.xpack.esql.**"
# method: "test {union_types.MultiIndexIpStringStatsInline}"
# issue: "https://github.com/elastic/elasticsearch/..."
# - class: "org.elasticsearch.xpack.esql.**"
# method: "test {union_types.MultiIndexIpStringStatsInline *}"
# issue: "https://github.com/elastic/elasticsearch/..."
- class: org.elasticsearch.xpack.stateless.engine.translog.StatelessTranslogIT
method: testTranslogMasterFailureOnlyStressRecoveryTest
issue: https://github.com/elastic/elasticsearch/issues/147835
- class: org.elasticsearch.xpack.stateless.autoscaling.search.AutoscalingReplicaIT
method: testSearchSizeAffectsReplicasSPBetween100And250
issue: https://github.com/elastic/elasticsearch-serverless/issues/5731
- class: org.elasticsearch.xpack.stateless.objectstore.AzureMultiProjectObjectStoreIT
method: testObjectStoreSeparation
issue: https://github.com/elastic/elasticsearch-serverless/issues/6311
- class: org.elasticsearch.xpack.stateless.cache.SearchCommitPrefetcherIT
method: testForceCommitPrefetch
issue: https://github.com/elastic/elasticsearch/issues/147847
- class: org.elasticsearch.backwards.RareTermsIT
method: testSingleValuedString
issue: https://github.com/elastic/elasticsearch/issues/147853
- class: org.elasticsearch.search.aggregations.metrics.LargeTopHitsIT
method: test500Queries
issue: https://github.com/elastic/elasticsearch/issues/148056
- class: org.elasticsearch.xpack.stateless.StatelessHollowIndexShardsIT
method: testStressWithRelocationFailures
issue: https://github.com/elastic/elasticsearch/issues/148129
- class: org.elasticsearch.xpack.stateless.StatelessHollowIndexShardsIT
method: testStressWithoutFailures
issue: https://github.com/elastic/elasticsearch/issues/148310
- class: org.elasticsearch.xpack.esql.qa.multi_node.GenerativeIT
method: test {feature:UNMAPPED_FIELDS_LOAD}
issue: https://github.com/elastic/elasticsearch/issues/148619
- class: org.elasticsearch.xpack.ml.integration.RevertModelSnapshotIT
method: testRevertModelSnapshot
issue: https://github.com/elastic/elasticsearch/issues/147383
- class: org.elasticsearch.indices.state.OpenCloseIndexIT
method: testTranslogStats
issue: https://github.com/elastic/elasticsearch/issues/149852
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecIntsIT
method: test {csv-spec:ints.valuesLongGrouped}
issue: https://github.com/elastic/elasticsearch/issues/149905
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT
method: test {feature:UNMAPPED_FIELDS_LOAD}
issue: https://github.com/elastic/elasticsearch/issues/148619
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecK8sTimeseriesCountDistinctOverTimeIT
method: test {csv-spec:k8s-timeseries-count-distinct-over-time.valuesNull}
issue: https://github.com/elastic/elasticsearch/issues/149961
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecK8sTimeseriesCountDistinctOverTimeIT
method: test {csv-spec:k8s-timeseries-count-distinct-over-time.countDistinctNull}
issue: https://github.com/elastic/elasticsearch/issues/149962
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecWhereLikeIT
method: test {csv-spec:where-like.likePrefixSuffix}
issue: https://github.com/elastic/elasticsearch/issues/149964
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecWhereLikeIT
method: test {csv-spec:where-like.likePrefixSuffix}
issue: https://github.com/elastic/elasticsearch/issues/149964
- class: org.elasticsearch.xpack.esql.CsvIT
method: test {csv-spec:k8s-timeseries-increase.increase_of_double_no_grouping_promql}
issue: https://github.com/elastic/elasticsearch/issues/150045
- class: org.elasticsearch.xpack.esql.heap_attack.HeapAttackIT
method: testGroupOnManyLongs
issue: https://github.com/elastic/elasticsearch/issues/150104
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecK8sTimeseriesCountDistinctOverTimeIT
method: test {csv-spec:k8s-timeseries-count-distinct-over-time.countDistinctNull}
issue: https://github.com/elastic/elasticsearch/issues/150187
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecK8sTimeseriesCountDistinctOverTimeIT
method: test {csv-spec:k8s-timeseries-count-distinct-over-time.countDistinctNull}
issue: https://github.com/elastic/elasticsearch/issues/150187
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecK8sTimeseriesCountDistinctOverTimeIT
method: test {csv-spec:k8s-timeseries-count-distinct-over-time.valuesNull}
issue: https://github.com/elastic/elasticsearch/issues/150188
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecK8sTimeseriesCountDistinctOverTimeIT
method: test {csv-spec:k8s-timeseries-count-distinct-over-time.valuesNull}
issue: https://github.com/elastic/elasticsearch/issues/150188
- class: org.elasticsearch.xpack.stateless.engine.translog.StatelessTranslogIT
method: testTranslogStressRecoveryTest
issue: https://github.com/elastic/elasticsearch/issues/150297
- class: org.elasticsearch.repositories.gcs.GoogleCloudStorageBlobContainerRetriesTests
method: testWriteLargeBlob
issue: https://github.com/elastic/elasticsearch/issues/150356
- class: org.elasticsearch.xpack.esql.action.FileSourceSecretDecryptionAcrossNodesIT
method: testJoinedDataNodeDecryptsTheSecret
issue: https://github.com/elastic/elasticsearch/issues/150440
- class: org.elasticsearch.upgrades.TransformSurvivesUpgradeIT
method: testTransformRollingUpgrade
issue: https://github.com/elastic/elasticsearch/issues/150442
- class: org.elasticsearch.xpack.stateless.recovery.BlockRefreshUponIndexCreationIT
method: testRefreshesAreBlockedUntilBlockIsRemoved
issue: https://github.com/elastic/elasticsearch/issues/150492
- class: org.elasticsearch.xpack.ml.integration.DatafeedCcsIT
method: testDatafeedWithCcsRemoteUnavailable
issue: https://github.com/elastic/elasticsearch/issues/150541
- class: org.elasticsearch.multiproject.test.XpackWithMultipleProjectsClientYamlTestSuiteIT
method: test {yaml=ml/data_frame_analytics_crud/Test put classification given max_trees is greater than 2k}
issue: https://github.com/elastic/elasticsearch/issues/150629
- class: org.elasticsearch.xpack.stateless.recovery.BlockRefreshUponIndexCreationIT
method: testRefreshBlockRemovedAfterDelay
issue: https://github.com/elastic/elasticsearch/issues/150662
- class: org.elasticsearch.xpack.eql.qa.ccs_rolling_upgrade.EqlCcsRollingUpgradeIT
method: testSequences
issue: https://github.com/elastic/elasticsearch/issues/150762
- class: org.elasticsearch.xpack.esql.core.anonymizer.AnonymizationContextTests
method: testNullClusterUuidDoesNotNpe
issue: https://github.com/elastic/elasticsearch/issues/150887
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecTopNIT
method: test {csv-spec:topN.topNLongRangeWildcardSort}
issue: https://github.com/elastic/elasticsearch/issues/150874
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecTopNIT
method: test {csv-spec:topN.topNLongRangeWildcardSort}
issue: https://github.com/elastic/elasticsearch/issues/150874
- class: org.elasticsearch.xpack.stateless.StatelessHollowIndexShardsIT
method: testUnhollowOnUpdates
issue: https://github.com/elastic/elasticsearch/issues/151100
- class: org.elasticsearch.xpack.stateless.cluster.coordination.TransportConsistentClusterStateReadIT
method: testWaitsUntilTheNodeRejoinsTheClusterToReturnAValidClusterState
issue: https://github.com/elastic/elasticsearch/issues/151402
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT
method: test {feature:SUBQUERIES}
issue: https://github.com/elastic/elasticsearch/issues/149681
- class: org.elasticsearch.xpack.esql.qa.multi_node.GenerativeIT
method: test {feature:SUBQUERIES}
issue: https://github.com/elastic/elasticsearch/issues/149681
- class: org.elasticsearch.datastreams.lifecycle.ExplainDataStreamLifecycleIT
method: testExplainFailuresLifecycle
issue: https://github.com/elastic/elasticsearch/issues/151602
- class: org.elasticsearch.backwards.MixedClusterClientYamlTestSuiteIT
method: test {p0=aggregations/terms/Double test}
issue: https://github.com/elastic/elasticsearch/issues/151793
- class: org.elasticsearch.upgrades.MlMappingsUpgradeIT
method: testMappingsUpgrade
issue: https://github.com/elastic/elasticsearch/issues/152115
- class: org.elasticsearch.xpack.esql.action.ExternalSourceProfileIT
method: testCsvCountStarScansColdThenSkipsWarm
issue: https://github.com/elastic/elasticsearch/issues/152132
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecDateRangeIT
method: test {csv-spec:date_range.rangeWithinPointMultiValueSomeMatch}
issue: https://github.com/elastic/elasticsearch/issues/152267
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecDateRangeIT
method: test {csv-spec:date_range.rangeWithinPointMultiValueSomeMatch}
issue: https://github.com/elastic/elasticsearch/issues/152267
- class: org.elasticsearch.reindex.management.CancelTasksRelocationIT
method: testCancelAllReindexTasksByActionWithMixedRelocationState
issue: https://github.com/elastic/elasticsearch/issues/152291
- class: org.elasticsearch.xpack.test.rest.XPackRestIT
method: test {yaml=ml/delete_expired_data/Test delete expired data with path parameters}
issue: https://github.com/elastic/elasticsearch/issues/152311
- class: org.elasticsearch.repositories.azure.AzureBlobContainerRetriesTests
method: testWriteLargeBlob
issue: https://github.com/elastic/elasticsearch/issues/152914
- class: org.elasticsearch.reindex.management.ReindexCancelRelocationIT
method: testCancelReindexCancelsRelocatedTaskByOriginalTaskId
issue: https://github.com/elastic/elasticsearch/issues/152925
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecIT
method: test {csv-spec:lookup-join.mvKeywordFieldJoinWarningsFromRightSideWhenNotKept}
issue: https://github.com/elastic/elasticsearch/issues/153046
- class: org.elasticsearch.xpack.stateless.reshard.StatelessReshardIT
method: testMultiTermVectorsApiRealtimeGet
issue: https://github.com/elastic/elasticsearch/issues/150101
- class: org.elasticsearch.xpack.stateless.StatelessHollowIndexShardsIT
method: testRelocateHollowableShardWithConnectionFailure
issue: https://github.com/elastic/elasticsearch/issues/153156
- class: org.elasticsearch.xpack.esql.action.FromDatasetIT
method: testNdjsonBadDateTokenHonorsErrorPolicyMatchingColumnar
issue: https://github.com/elastic/elasticsearch/issues/153158
- class: org.elasticsearch.xpack.stateless.reshard.StatelessReshardIT
method: testSourceRelocationAndTargetRestart
issue: https://github.com/elastic/elasticsearch/issues/153173
- class: org.elasticsearch.xpack.esql.action.FromDatasetIT
method: testColumnarBadDateTokenNullsCellEagerAndDeferred
issue: https://github.com/elastic/elasticsearch/issues/153187
- class: org.elasticsearch.xpack.stateless.commits.StatelessClusterIntegrityStressIT
method: testRandomActivities
issue: https://github.com/elastic/elasticsearch/issues/147841
- class: org.elasticsearch.xpack.stateless.reshard.StatelessReshardIT
method: testTermVectorsApiRealtimeGet
issue: https://github.com/elastic/elasticsearch/issues/153282
- class: org.elasticsearch.xpack.transform.integration.TransformCrossProjectIT
method: testUpdateTransformWithProjectRouting
issue: https://github.com/elastic/elasticsearch/issues/147534
- class: org.elasticsearch.upgrades.IndexingIT
method: testIndexing
issue: https://github.com/elastic/elasticsearch/issues/140728
- class: org.elasticsearch.xpack.transform.checkpoint.TransformGetCheckpointIT
method: testGetCheckpointTimeoutExceeded
issue: https://github.com/elastic/elasticsearch/issues/150934
- class: org.elasticsearch.xpack.esql.CsvIT
method: test {csv-spec:k8s-timeseries.firstAndLastWithNullSort}
issue: https://github.com/elastic/elasticsearch/issues/153555
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecK8sTimeseriesIT
method: test {csv-spec:k8s-timeseries.firstAndLastWithNullSort}
issue: https://github.com/elastic/elasticsearch/issues/153565
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecK8sTimeseriesIT
method: test {csv-spec:k8s-timeseries.firstAndLastWithNullSort}
issue: https://github.com/elastic/elasticsearch/issues/153565
- class: org.elasticsearch.geometry.utils.CircleUtilsTests
method: testCreateRegularGeoShapePolygon
issue: https://github.com/elastic/elasticsearch/issues/153600
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecK8sTimeseriesIT
method: test {csv-spec:k8s-timeseries.firstAndLastWithNullSort}
issue: https://github.com/elastic/elasticsearch/issues/153613
- class: org.elasticsearch.xpack.esql.CsvFlattenedKeywordIT
method: test {csv-spec:scoring.testMatchAndQueryStringFunctionsWithScore}
issue: https://github.com/elastic/elasticsearch/issues/153614
- class: org.elasticsearch.xpack.esql.datasources.AsyncExternalSourceBufferTests
method: testRecordInformationalWarningAppliesOneGlobalCapAcrossManyCallers
issue: https://github.com/elastic/elasticsearch/issues/153652
- class: org.elasticsearch.xpack.esql.parser.ParamsParserTests
method: testMixedSingleDoubleParams
issue: https://github.com/elastic/elasticsearch/issues/153746
- class: org.elasticsearch.xpack.esql.action.S3ManagedIdentityAuthIT
method: testManagedIdentityAuthReadsRowsAndUsesWorkloadIdentityCredential
issue: https://github.com/elastic/elasticsearch/issues/153820
- class: org.elasticsearch.xpack.esql.action.S3ManagedIdentityAuthIT
method: testQueryFailsWhenWrongCredentialIsUsed
issue: https://github.com/elastic/elasticsearch/issues/153821
- class: org.elasticsearch.xpack.esql.CsvIT
method: test {csv-spec:inlinestats.afterWhere}
issue: https://github.com/elastic/elasticsearch/issues/152591
- class: org.elasticsearch.xpack.esql.action.ExternalParquetCoercionWarningFloodIT
method: testDeclaredCoercionWarningsStayBoundedAcrossFanOut
issue: https://github.com/elastic/elasticsearch/issues/154023
- class: org.elasticsearch.xpack.ccr.CcrSeqNoPruningIT
method: testSeqNoPartiallyRetainedByCcrLease
issue: https://github.com/elastic/elasticsearch/issues/152498
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecSpatialShapesIT
method: test {csv-spec:spatial_shapes.convertFromStringParseError}
issue: https://github.com/elastic/elasticsearch/issues/154157
- class: org.elasticsearch.xpack.esql.action.FromDatasetIT
method: testWildcardSpanningIndexAndDatasetSucceeds
issue: https://github.com/elastic/elasticsearch/issues/154200
- class: org.elasticsearch.reindex.ReindexerTests
method: testRemoteReindexClosesRemoteInfoOnEarlyFailure
issue: https://github.com/elastic/elasticsearch/issues/154237
- class: org.elasticsearch.index.rankeval.RankEvalRequestIT
method: testIndicesOptions
issue: https://github.com/elastic/elasticsearch/issues/154360
- class: org.elasticsearch.xpack.restart.MLModelDeploymentFullClusterRestartIT
method: testDeploymentSurvivesRestart {cluster=UPGRADED}
issue: https://github.com/elastic/elasticsearch/issues/151923
- class: org.elasticsearch.xpack.search.CrossClusterAsyncSearchIT
method: testClusterDetailsAfterCCSWithFailuresOnOneShardOnly_AllowPartialResultsFalse_MinimizeRoundtripsFalse
issue: https://github.com/elastic/elasticsearch/issues/154363
- class: org.elasticsearch.bootstrap.SpawnerNoBootstrapTests
method: testControllerSpawnGatedBySettings
issue: https://github.com/elastic/elasticsearch/issues/154291
- class: org.elasticsearch.backwards.MixedClusterClientYamlTestSuiteIT
method: "test {p0=mapping/70_columnar_prefix_dynamic_properties/logsdb_columnar: multiple sub-objects with all three supported dynamic values}"
issue: https://github.com/elastic/elasticsearch/issues/154464
- class: org.elasticsearch.xpack.esql.action.CrossClusterEnrichUnavailableClustersIT
method: testEnrichRemoteWithVendor
issue: https://github.com/elastic/elasticsearch/issues/154532
- class: org.elasticsearch.xpack.esql.action.CrossClusterEnrichUnavailableClustersIT
method: testEnrichWithHostsPolicyAndDisconnectedRemotesWithSkipUnavailableFalse
issue: https://github.com/elastic/elasticsearch/issues/154533
- class: org.elasticsearch.smoketest.SmokeTestMultiNodeClientYamlTestSuiteIT
method: "test {yaml=mapping/70_columnar_prefix_dynamic_properties/logsdb_columnar: no prefix_properties when dynamic is only set at root level}"
issue: https://github.com/elastic/elasticsearch/issues/154537
- class: org.elasticsearch.xpack.remotecluster.RemoteClusterSecurityCcrMigrationIT
method: testRcs1SetupAgain
issue: https://github.com/elastic/elasticsearch/issues/154539
- class: org.elasticsearch.xpack.remotecluster.RemoteClusterSecurityCcrMigrationIT
method: testRcs2Setup
issue: https://github.com/elastic/elasticsearch/issues/154540
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT
method: test {feature:BASELINE}
issue: https://github.com/elastic/elasticsearch/issues/154058
- class: org.elasticsearch.backwards.MixedClusterClientYamlTestSuiteIT
method: test {p0=indices.sort/30_multi_value/Index Sort with doc_values multi_value false - integer}
issue: https://github.com/elastic/elasticsearch/issues/154602
- class: org.elasticsearch.xpack.stateless.commits.StatelessCommitServiceTests
method: testFullyUploadedListenerDoesNotFireBeforeItsCopyCompletes
issue: https://github.com/elastic/elasticsearch/issues/154606
- class: org.elasticsearch.xpack.esql.qa.multi_node.GenerativeIT
method: test {feature:BASELINE}
issue: https://github.com/elastic/elasticsearch/issues/154058
- class: org.elasticsearch.xpack.stateless.snapshots.StatelessSnapshotResiliencyWithEnabledTests
method: testSuccessfulSnapshotWithConcurrentDynamicMappingUpdates
issue: https://github.com/elastic/elasticsearch/issues/154731
- class: org.elasticsearch.xpack.esql.action.ExternalCsvHivePartitionedIT
method: testCommaSeparatedResourceFirstFileWinsRoundTrips
issue: https://github.com/elastic/elasticsearch/issues/154662
- class: org.elasticsearch.xpack.esql.CsvIT
method: test {csv-spec:change_point.values null column}
issue: https://github.com/elastic/elasticsearch/issues/154877
- class: org.elasticsearch.xpack.core.ml.datafeed.DatafeedUpdateTests
method: testIsUserInitiatedProjectRoutingChangeWhenRoutingNarrowsShouldReturnTrue
issue: https://github.com/elastic/elasticsearch/issues/154908
- class: org.elasticsearch.xpack.core.ml.datafeed.DatafeedUpdateTests
method: testIsUserInitiatedProjectRoutingChangeWhenRoutingOmittedShouldReturnFalse
issue: https://github.com/elastic/elasticsearch/issues/154909
- class: org.elasticsearch.xpack.core.ml.datafeed.DatafeedUpdateTests
method: testIsUserInitiatedProjectRoutingChangeWhenRoutingUnchangedShouldReturnFalse
issue: https://github.com/elastic/elasticsearch/issues/154910
- class: org.elasticsearch.xpack.core.ml.datafeed.DatafeedUpdateTests
method: testIsUserInitiatedProjectRoutingChangeWhenRoutingWidensShouldReturnTrue
issue: https://github.com/elastic/elasticsearch/issues/154911
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecChangePointIT
method: test {csv-spec:change_point.not enough buckets per group}
issue: https://github.com/elastic/elasticsearch/issues/154932
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecChangePointIT
method: test {csv-spec:change_point.not enough buckets per group}
issue: https://github.com/elastic/elasticsearch/issues/154932
- class: org.elasticsearch.gradle.internal.InternalDistributionBwcSetupPluginFuncTest
method: falls back to local gradle build when DRA manifest returns 404
issue: https://github.com/elastic/elasticsearch/issues/154979
- class: org.elasticsearch.gradle.internal.InternalDistributionBwcSetupPluginFuncTest
method: builds distribution from branches via archives extractedAssemble
issue: https://github.com/elastic/elasticsearch/issues/154980
- class: org.elasticsearch.gradle.internal.InternalDistributionBwcSetupPluginFuncTest
method: supports linux aarch distributions
issue: https://github.com/elastic/elasticsearch/issues/154982
- class: org.elasticsearch.gradle.internal.InternalDistributionBwcSetupPluginFuncTest
method: falls back to local build when mode=auto and DRA manifest commit does not match remote tracking ref
issue: https://github.com/elastic/elasticsearch/issues/154983
- class: org.elasticsearch.gradle.internal.precommit.ForbiddenApisPrecommitPluginFuncTest
method: selects launcher when minimum runtime differs from current jvm
issue: https://github.com/elastic/elasticsearch/issues/154984
- class: org.elasticsearch.upgrades.MlJobSnapshotUpgradeIT
method: testSnapshotUpgrader
issue: https://github.com/elastic/elasticsearch/issues/154988
- class: org.elasticsearch.xpack.transform.integration.TransformDestIndexIT
method: testUnattendedTransformDestIndexCreatedDuringUpdate_EmptySourceIndex_NoDeferValidation
issue: https://github.com/elastic/elasticsearch/issues/152599
- class: org.elasticsearch.compute.operator.topn.GroupedTopNOperatorTests
method: testRandomMultipleColumns
issue: https://github.com/elastic/elasticsearch/issues/155019
- class: org.elasticsearch.compute.aggregation.BulkArrowAggregationTests
method: testSumIntOverArrowBufferMasked
issue: https://github.com/elastic/elasticsearch/issues/153586
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecStatsIT
method: test {csv-spec:stats.sumWithOverflowGroupingRow}
issue: https://github.com/elastic/elasticsearch/issues/153434
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecChangePointIT
method: test {csv-spec:change_point.values int column with all nulls}
issue: https://github.com/elastic/elasticsearch/issues/153656
- class: org.elasticsearch.xpack.search.CrossClusterAsyncSearchIT
method: testClusterDetailsAfterCCSWithFailuresOnOneClusterOnly_AllowPartialResultsFalse_MinimizeRoundtripsFalse
issue: https://github.com/elastic/elasticsearch/issues/155173
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecStatsIT
method: test {csv-spec:stats.sumWithOverflowGroupingRow}
issue: https://github.com/elastic/elasticsearch/issues/155155
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecStatsIT
method: test {csv-spec:stats.sumWithOverflowGroupingRow}
issue: https://github.com/elastic/elasticsearch/issues/155155
- class: org.elasticsearch.xpack.transform.integration.continuous.TransformContinuousIT
method: testContinuousEvents
issue: https://github.com/elastic/elasticsearch/issues/153782
- class: org.elasticsearch.xpack.esql.CsvIT
method: test {csv-spec:stats.sumWithOverflowGroupingRow}
issue: https://github.com/elastic/elasticsearch/issues/155355
- class: org.elasticsearch.xpack.esql.ccq.FederationRemoteDatasetGateRestIT
method: testDisabledRemoteResolvesDatasetAsMissingIndex
issue: https://github.com/elastic/elasticsearch/issues/155382
- class: org.elasticsearch.multiproject.test.XpackWithMultipleProjectsClientYamlTestSuiteIT
method: test {yaml=downsample/100_downsample_histograms/Downsample histogram with last value}
issue: https://github.com/elastic/elasticsearch/issues/155453
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecKnnFunctionIT
method: test {csv-spec:knn-function.knnAfterChainedRename}
issue: https://github.com/elastic/elasticsearch/issues/155518
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecKnnFunctionIT
method: test {csv-spec:knn-function.knnAfterSimpleRename}
issue: https://github.com/elastic/elasticsearch/issues/155519
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecKnnFunctionIT
method: test {csv-spec:knn-function.knnAfterRenameWithEval}
issue: https://github.com/elastic/elasticsearch/issues/155521
- class: org.elasticsearch.xpack.stateless.StatelessCommitServiceIT
method: testRetainCommitForReadersAfterShardReplicasSetToZero
issue: https://github.com/elastic/elasticsearch/issues/155567
- class: org.elasticsearch.compute.aggregation.CountDistinctLongGroupingAggregatorFunctionTests
method: testAllKeyNulls
issue: https://github.com/elastic/elasticsearch/issues/155578
- class: org.elasticsearch.xpack.inference.integration.CCMServiceIT
method: testDisableCCM_RemovesAuthorizationTask
issue: https://github.com/elastic/elasticsearch/issues/155579
- class: org.elasticsearch.xpack.ccr.RestartIT
method: testRestart {targetCluster=FOLLOWER}
issue: https://github.com/elastic/elasticsearch/issues/155609
- class: org.elasticsearch.xpack.esql.qa.single_node.EsqlSpecForceStoredLoadingBucketIncludeEmptyBucketsIT
method: test {csv-spec:bucket_include_empty_buckets.Large number of buckets doesn't OOM - stats}
issue: https://github.com/elastic/elasticsearch/issues/155663
- class: org.elasticsearch.xpack.esql.action.LookupJoinTypesIT
method: testLookupJoinSame {p0=null}
issue: https://github.com/elastic/elasticsearch/issues/155665
- class: org.elasticsearch.xpack.esql.CsvIT
method: test {csv-spec:stats_earliest_latest.latest long by timestamp}
issue: https://github.com/elastic/elasticsearch/issues/155670
- class: org.elasticsearch.packaging.test.EnrollmentProcessTests
method: test10ArchiveAutoFormCluster
issue: https://github.com/elastic/elasticsearch/issues/155685
- class: org.elasticsearch.xpack.esql.action.LookupJoinTypesIT
method: testOutputSupportedTypes {p0=LT}
issue: https://github.com/elastic/elasticsearch/issues/155694
- class: org.elasticsearch.search.vectors.IVFKnnByteVectorQueryTests
method: testScoreMIP
issue: https://github.com/elastic/elasticsearch/issues/155783
- class: org.elasticsearch.search.vectors.IVFKnnByteVectorQueryTests
method: testRandomWithFilter
issue: https://github.com/elastic/elasticsearch/issues/155784
- class: org.elasticsearch.xpack.transform.integration.TransformIT
method: testTransformLifecycleInALoop
issue: https://github.com/elastic/elasticsearch/issues/155844
- class: org.elasticsearch.xpack.esql.CsvIT
method: test {csv-spec:stats_earliest_latest.retrieve earliest long by timestamp}
issue: https://github.com/elastic/elasticsearch/issues/155850
- class: org.elasticsearch.reindex.ReindexFailureTests
method: testResponseOnSearchFailure
issue: https://github.com/elastic/elasticsearch/issues/151064
- class: org.elasticsearch.xpack.esql.ccq.FederationOutgoingDatasetGateRestIT
method: testDisabledLocalResolvesRemoteDatasetAsMissingIndex
issue: https://github.com/elastic/elasticsearch/issues/155916
- class: org.elasticsearch.xpack.stateless.cache.SharedBlobCacheWarmingServiceIT
method: testCacheIsWarmedBeforeSearchShardRecoveryWhenVBCCGetsUploaded
issue: https://github.com/elastic/elasticsearch/issues/153406
- class: org.elasticsearch.xpack.esql.qa.single_node.EsqlSpecApproximationBucketIncludeEmptyBucketsIT
method: test {csv-spec:bucket_include_empty_buckets.Large number of buckets doesn't OOM - stats}
issue: https://github.com/elastic/elasticsearch/issues/155921
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecUnmappedNullifyIT
method: test {csv-spec:unmapped-nullify.statsNullifiedFirst}
issue: https://github.com/elastic/elasticsearch/issues/156026
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecUnmappedNullifyIT
method: test {csv-spec:unmapped-nullify.statsNullifiedFirst}
issue: https://github.com/elastic/elasticsearch/issues/156026
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecUnmappedNullifyIT
method: test {csv-spec:unmapped-nullify.statsNullifiedLast}
issue: https://github.com/elastic/elasticsearch/issues/156027
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecUnmappedNullifyIT
method: test {csv-spec:unmapped-nullify.statsNullifiedLast}
issue: https://github.com/elastic/elasticsearch/issues/156027
- class: org.elasticsearch.xpack.esql.action.ExternalCsvHivePartitionedIT
method: testHivePartitionShadowWarningReachesClient
issue: https://github.com/elastic/elasticsearch/issues/153780
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecK8sTimeseriesLastOverTimeIT
method: test {csv-spec:k8s-timeseries-last-over-time.last_over_time_of_event}
issue: https://github.com/elastic/elasticsearch/issues/156131
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecK8sTimeseriesLastOverTimeIT
method: test {csv-spec:k8s-timeseries-last-over-time.last_over_time_of_event}
issue: https://github.com/elastic/elasticsearch/issues/156131
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecK8sTimeseriesFirstOverTimeIT
method: test {csv-spec:k8s-timeseries-first-over-time.first_over_time_of_event}
issue: https://github.com/elastic/elasticsearch/issues/156159
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecK8sTimeseriesFirstOverTimeIT
method: test {csv-spec:k8s-timeseries-first-over-time.first_over_time_of_event}
issue: https://github.com/elastic/elasticsearch/issues/156159
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecChangePointIT
method: test {csv-spec:change_point.values int column with all nulls}
issue: https://github.com/elastic/elasticsearch/issues/155124
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecChangePointIT
method: test {csv-spec:change_point.values int column with all nulls}
issue: https://github.com/elastic/elasticsearch/issues/155124
- class: org.elasticsearch.client.RestClientSingleHostIntegTests
method: testRequestResetAndAbort
issue: https://github.com/elastic/elasticsearch/issues/156177
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecDenseVectorAggsIT
method: test {csv-spec:dense_vector_aggs.sumDenseVectorOverflow}
issue: https://github.com/elastic/elasticsearch/issues/156194
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecDenseVectorAggsIT
method: test {csv-spec:dense_vector_aggs.sumDenseVectorOverflow}
issue: https://github.com/elastic/elasticsearch/issues/156194
- class: org.elasticsearch.xpack.esql.analysis.AnalyzerSubqueryTests
method: testTSSubqueryWithConflictingTypesInUnionAll
issue: https://github.com/elastic/elasticsearch/issues/156226
- class: org.elasticsearch.xpack.esql.analysis.AnalyzerSubqueryTests
method: testTSSubqueryWithConflictingTypesAndExplicitCast
issue: https://github.com/elastic/elasticsearch/issues/156229
- class: org.elasticsearch.xpack.esql.qa.single_node.EsqlSpecApproximationIT
method: test {csv-spec:approximation.Inline stats by}
issue: https://github.com/elastic/elasticsearch/issues/156264
- class: org.elasticsearch.xpack.ml.aggs.changepoint.ChangePointAggregatorTests
method: testDistributionChange
issue: https://github.com/elastic/elasticsearch/issues/156294
- class: org.elasticsearch.xpack.esql.qa.single_node.RestEsqlIT
method: testAutoPartitioning {SYNC}
issue: https://github.com/elastic/elasticsearch/issues/156243
- class: org.elasticsearch.xpack.esql.qa.single_node.EsqlSpecBucketIncludeEmptyBucketsIT
method: test {csv-spec:bucket_include_empty_buckets.Large number of buckets doesn't OOM - stats}
issue: https://github.com/elastic/elasticsearch/issues/156356
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlSpecChangePointIT
method: test {csv-spec:change_point.null keys}
issue: https://github.com/elastic/elasticsearch/issues/156397
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeRandomMappingIT
method: test
issue: https://github.com/elastic/elasticsearch/issues/156415
- class: org.elasticsearch.xpack.search.AsyncSearchErrorTraceIT
method: testAsyncSearchFailingQueryErrorTraceFalseOnSubmitAndTrueOnGet
issue: https://github.com/elastic/elasticsearch/issues/156435
- class: org.elasticsearch.xpack.esql.plugin.DataNodeRequestSenderIT
method: testSearchWhileRelocating
issue: https://github.com/elastic/elasticsearch/issues/156465
- class: org.elasticsearch.xpack.inference.external.http.sender.RequestTaskTests
method: testRequest_ReleasesBytesTrackedByCircuitBreaker_OnTimedListenerTimeout
issue: https://github.com/elastic/elasticsearch/issues/156467
- class: org.elasticsearch.repositories.gcs.GoogleCloudStorageBlobStoreRepositoryTests
method: testSnapshotWithLargeSegmentFiles
issue: https://github.com/elastic/elasticsearch/issues/156468
- class: org.elasticsearch.xpack.stateless.reshard.StatelessReshardIT
method: testTargetRecoversAfterMasterRestartDuringHandoff
issue: https://github.com/elastic/elasticsearch/issues/156561
- class: org.elasticsearch.xpack.stateless.StatelessHollowIndexShardsIT
method: testStressWithRelocationOrObjectStoreFailures
issue: https://github.com/elastic/elasticsearch/issues/156569
- class: org.elasticsearch.xpack.transform.integration.TransformCrossProjectMetricsIT
method: testCpsGaugesPublishForRunningTransform
issue: https://github.com/elastic/elasticsearch/issues/156575
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecLookupJoinExpressionIT
issue: https://github.com/elastic/elasticsearch/issues/156655
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecLookupJoinExpressionIT
issue: https://github.com/elastic/elasticsearch/issues/156658
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecDateIT
method: test {csv-spec:date.dateDiffUnitFromField}
issue: https://github.com/elastic/elasticsearch/issues/156698
- class: org.elasticsearch.xpack.esql.qa.mixed.EsqlClientYamlIT
method: test {p0=esql/160_union_types/CASE}
issue: https://github.com/elastic/elasticsearch/issues/156729
- class: org.elasticsearch.test.rest.ClientYamlTestSuiteIT
method: test {yaml=search.vectors/131_knn_query_nested_inner_hits_score/nested kNN inner_hits are scored like the query phase on a quantized field}
issue: https://github.com/elastic/elasticsearch/issues/156753
- class: org.elasticsearch.xpack.esql.qa.multi_node.GenerativeIT
method: test {feature:PARQUET_DATASET}
issue: https://github.com/elastic/elasticsearch/issues/156789
- class: org.elasticsearch.xpack.esql.qa.single_node.GenerativeIT
method: test {feature:PARQUET_DATASET}
issue: https://github.com/elastic/elasticsearch/issues/156789
- class: org.elasticsearch.xpack.esql.analysis.AnalyzerInSubqueryGoldenTests
method: testRowMainMultiColumnInSubqueryWithTsSource {historical}
issue: https://github.com/elastic/elasticsearch/issues/156832
- class: org.elasticsearch.xpack.esql.analysis.AnalyzerInSubqueryGoldenTests
method: testRowMainMultiColumnInSubqueryWithTsSource {current}
issue: https://github.com/elastic/elasticsearch/issues/156833
- class: org.elasticsearch.xpack.esql.analysis.AnalyzerInSubqueryGoldenTests
method: testTsMainMultiColumnInSubqueryWithRowSource {historical}
issue: https://github.com/elastic/elasticsearch/issues/156842
- class: org.elasticsearch.xpack.esql.analysis.AnalyzerInSubqueryGoldenTests
method: testTsMainMultiColumnInSubqueryWithRowSource {current}
issue: https://github.com/elastic/elasticsearch/issues/156843
- class: org.elasticsearch.xpack.esql.analysis.AnalyzerInSubqueryGoldenTests
method: testMultiColumnInSubqueryWithTsSource {current}
issue: https://github.com/elastic/elasticsearch/issues/156844
- class: org.elasticsearch.xpack.esql.analysis.AnalyzerInSubqueryGoldenTests
method: testMultiColumnInSubqueryWithTsSource {historical}
issue: https://github.com/elastic/elasticsearch/issues/156845
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlCurrentCoordinatorSpecChangePointIT
method: test {csv-spec:change_point.null keys}
issue: https://github.com/elastic/elasticsearch/issues/156856
- class: org.elasticsearch.multiproject.test.XpackWithMultipleProjectsClientYamlTestSuiteIT
method: test {yaml=downsample/10_basic/Downsample a downsampled index}
issue: https://github.com/elastic/elasticsearch/issues/156862
- class: org.elasticsearch.search.aggregations.metrics.TDigestPercentilesIT
method: testSingleValuedFieldPartiallyUnmapped
issue: https://github.com/elastic/elasticsearch/issues/156864
- class: org.elasticsearch.multiproject.test.XpackWithMultipleProjectsClientYamlTestSuiteIT
method: test {yaml=ml/ml_standard_analyze/Test analyze API with the standard 7.16 ML analyzer}
issue: https://github.com/elastic/elasticsearch/issues/156878
- class: org.elasticsearch.reindex.management.ReindexDoubleRelocationIT
method: testDoubleRelocationWithManagementEndpoints
issue: https://github.com/elastic/elasticsearch/issues/156929
- class: org.elasticsearch.entitlement.qa.EntitlementAgentAttachLoggingIT
method: testEntitlementAgentAttachLineIsLogged
issue: https://github.com/elastic/elasticsearch/issues/156950
- class: org.elasticsearch.xpack.stateless.recovery.IndexingShardRelocationIT
method: testRelocatingIndexShardFetchesFirstRegionOnly
issue: https://github.com/elastic/elasticsearch/issues/152526
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecKnnFunctionIT
method: test {csv-spec:knn-function.knnBeforeMvExpandWithStats}
issue: https://github.com/elastic/elasticsearch/issues/157038
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecKnnFunctionIT
method: test {csv-spec:knn-function.knnAfterEvalAndRename}
issue: https://github.com/elastic/elasticsearch/issues/157039
- class: org.elasticsearch.xpack.stateless.engine.IndexEngineTests
method: testHollowEngineWithConcurrentNonHollowFlush
issue: https://github.com/elastic/elasticsearch/issues/157095
- class: org.elasticsearch.xpack.ml.integration.ForecastIT
method: testOverflowToDisk
issue: https://github.com/elastic/elasticsearch/issues/157223
- class: org.elasticsearch.multiproject.test.XpackWithMultipleProjectsClientYamlTestSuiteIT
method: test {yaml=esql/290_unmapped_load_partial_keyword_convert/aggregate_metric_double cast on punk field}
issue: https://github.com/elastic/elasticsearch/issues/157225
- class: org.elasticsearch.xpack.searchablesnapshots.FrozenSearchableSnapshotsIntegTests
method: testCreateAndRestorePartialSearchableSnapshot
issue: https://github.com/elastic/elasticsearch/issues/157256
- class: org.elasticsearch.backwards.MixedClusterClientYamlTestSuiteIT
method: test {p0=search/395_binary_doc_values_search/Test keyword range uses indexed byte ordering for binary doc values}
issue: https://github.com/elastic/elasticsearch/issues/157314
- class: org.elasticsearch.xpack.inference.services.ai21.Ai21ServiceTests
method: testUnifiedCompletionInfer
issue: https://github.com/elastic/elasticsearch/issues/157322
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecChangePointIT
method: test {csv-spec:change_point.null keys}
issue: https://github.com/elastic/elasticsearch/issues/157411
- class: org.elasticsearch.xpack.stateless.recovery.RecoveryCommitRegistrationIT
method: testSearchShardRecoveryRegistersCommit
issue: https://github.com/elastic/elasticsearch/issues/157463
- class: org.elasticsearch.xpack.ml.integration.PyTorchModelIT
method: testFailedDeploymentStats
issue: https://github.com/elastic/elasticsearch/issues/157341
- class: org.elasticsearch.compute.operator.exchange.ExchangeServiceTests
method: testExchangeSourceContinueOnFailure
issue: https://github.com/elastic/elasticsearch/issues/157535
- class: org.elasticsearch.xpack.ml.datafeed.DatafeedManagerTests
method: testUpdateForceRekeyingWhenCpsDisabledShouldReject
issue: https://github.com/elastic/elasticsearch/issues/157412
- class: org.elasticsearch.xpack.inference.services.azureopenai.AzureOpenAiServiceTests
method: testInfer_StreamRequest_ErrorResponse
issue: https://github.com/elastic/elasticsearch/issues/157575
- class: org.elasticsearch.xpack.esql.action.FromDatasetIT
method: testAbsentDeclaredColumnEmitsResponseWarningNdjson
issue: https://github.com/elastic/elasticsearch/issues/157593
- class: org.elasticsearch.xpack.stateless.StatelessRealTimeGetIT
method: testDataVisibility
issue: https://github.com/elastic/elasticsearch/issues/157732
- class: org.elasticsearch.xpack.stateless.snapshots.StatelessSnapshotResiliencyWithReadFromObjectStoreTests
method: testSuccessfulSnapshotWithConcurrentDynamicMappingUpdates
issue: https://github.com/elastic/elasticsearch/issues/157733
- class: org.elasticsearch.xpack.esql.qa.parquet.ParquetTestingIT
method: testParquetFile {bad_ARROW-GH-43605}
issue: https://github.com/elastic/elasticsearch/issues/157747
- class: org.elasticsearch.snapshots.RestoreOverOpenIndexIT
method: testOverlappingRestoreTransitionsDoNotCorruptTheSecondRestore
issue: https://github.com/elastic/elasticsearch/issues/157793
- class: org.elasticsearch.index.mapper.SyntheticVersusColumnarStoredSourceIT
method: testFallbackMultiValueViolationRestoredIdenticallyAcrossSourceModes
issue: https://github.com/elastic/elasticsearch/issues/157799
- class: org.elasticsearch.xpack.stateless.cache.SearchCommitPrefetcherIT
method: testUploadedCommitPrefetchNeverHitsIndexingNode
issue: https://github.com/elastic/elasticsearch/issues/157813
- class: org.elasticsearch.xpack.esql.optimizer.promql.PromqlGoldenTests
method: testBinaryWithDifferentSelectors {historical}
issue: https://github.com/elastic/elasticsearch/issues/157827
- class: org.elasticsearch.test.rest.ClientYamlTestSuiteIT
method: test {yaml=mapping/42_doc_values_on_failure/index.mapping.doc_values.on_failure=ignore applies to nullability violations (logsdb_columnar)}
issue: https://github.com/elastic/elasticsearch/issues/157829
- class: org.elasticsearch.xpack.esql.expression.function.scalar.spatial.StGeohexTests
method: testEvaluateInManyThreads {TestCase=geo_shape with literal precision and bounds}
issue: https://github.com/elastic/elasticsearch/issues/157840
- class: org.elasticsearch.xpack.stateless.snapshots.StatelessSnapshotResiliencyTests
method: testSuccessfulSnapshotWithConcurrentDynamicMappingUpdates
issue: https://github.com/elastic/elasticsearch/issues/157844
- class: org.elasticsearch.xpack.stateless.reshard.StatelessReshardMixedOperationsIT
method: testMixedOperationsDuringSplit
issue: https://github.com/elastic/elasticsearch/issues/157847
- class: org.elasticsearch.index.codec.vectors.cluster.FloatLloydKMeansLocalTests
method: testComputeNeighbours
issue: https://github.com/elastic/elasticsearch/issues/157870
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlOldCoordinatorSpecDenseVectorIT
method: test {csv-spec:dense_vector.limitByDenseVectorN2}
issue: https://github.com/elastic/elasticsearch/issues/157875
- class: org.elasticsearch.xpack.esql.optimizer.promql.PromqlGoldenTests
method: testBinaryWithDifferentSelectors {current}
issue: https://github.com/elastic/elasticsearch/issues/157912
- class: org.elasticsearch.cluster.metadata.MetadataCreateIndexServiceTests
method: testRegistryInstalledTemplateIsFalseForNonManagedTemplate
issue: https://github.com/elastic/elasticsearch/issues/157930
- class: org.elasticsearch.xpack.esql.datasources.ReadConfigFingerprintDerivationSitesTests
method: testEveryDerivationSiteIsDeclared
issue: https://github.com/elastic/elasticsearch/issues/157937
- class: org.elasticsearch.xpack.stateless.allocation.EstimatedHeapUsageAllocationDeciderIT
method: testEstimatedHeapAllocationDecider
issue: https://github.com/elastic/elasticsearch/issues/157939
- class: org.elasticsearch.action.bulk.ShardBatchIndexerCanUseBatchTests
method: testDynamicSettingUpdate
issue: https://github.com/elastic/elasticsearch/issues/157947
- class: org.elasticsearch.snapshots.BlobStoreIncrementalityIT
method: testForceMergeCausesFullSnapshot
issue: https://github.com/elastic/elasticsearch/issues/157970
- class: org.elasticsearch.xpack.esql.evaluator.command.TestCompoundOutputEvaluatorTests
method: testSimpleCircuitBreaking
issue: https://github.com/elastic/elasticsearch/issues/154059
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecTdigestIT
method: test {csv-spec:tdigest.count with bucket, time, and instance in FROM}
issue: https://github.com/elastic/elasticsearch/issues/158011
- class: org.elasticsearch.xpack.esql.ccq.MultiClusterSpecTdigestIT
method: test {csv-spec:tdigest.count with bucket, time, and instance in FROM}
issue: https://github.com/elastic/elasticsearch/issues/158050
- class: org.elasticsearch.xpack.ml.inference.ingest.IngestModelMemoryServiceTests
method: testDuplicateModelAcrossProjectsCountedOnce
issue: https://github.com/elastic/elasticsearch/issues/158071
- class: org.elasticsearch.aggregations.bucket.TimeSeriesAggregationsUnlimitedDimensionsIT
method: testTermsByTsid
issue: https://github.com/elastic/elasticsearch/issues/158088
- class: org.elasticsearch.xpack.esql.CsvFlattenedKeywordIT
method: test {csv-spec:tdigest.count with bucket, time, and instance in FROM}
issue: https://github.com/elastic/elasticsearch/issues/158089
- class: org.elasticsearch.xpack.esql.action.CsvExternalReadConfigParityIT
method: testDuplicateListingColdEqualsWarm
issue: https://github.com/elastic/elasticsearch/issues/157988
- class: org.elasticsearch.xpack.esql.action.ExternalReadConfigContaminationIT
method: testLicensedCountStillCrossesTheMultiFileFold
issue: https://github.com/elastic/elasticsearch/issues/157990
- class: org.elasticsearch.xpack.esql.action.ExternalReadConfigContaminationIT
method: testHeterogeneousMultiFileFoldIsNotServedAcrossConfigurations
issue: https://github.com/elastic/elasticsearch/issues/157991
- class: org.elasticsearch.xpack.esql.action.ExternalReadConfigContaminationIT
method: testDeclaredMultiFileReadIsNotServedTheInferredFold
issue: https://github.com/elastic/elasticsearch/issues/157992
- class: org.elasticsearch.xpack.esql.action.NdjsonExternalReadConfigParityIT
method: testDuplicateListingColdEqualsWarm
issue: https://github.com/elastic/elasticsearch/issues/157989
- class: org.elasticsearch.xpack.esql.action.TsvExternalReadConfigParityIT
method: testDuplicateListingColdEqualsWarm
issue: https://github.com/elastic/elasticsearch/issues/157993
- class: org.elasticsearch.foreign.processor.BoundsCheckGeneratedClassBehaviorTests
method: testSlicedSegmentCheckThrowsWhenSliceExceedsSegment
issue: https://github.com/elastic/elasticsearch/issues/158125
- class: org.elasticsearch.xpack.ml.datafeed.DatafeedManagerTests
method: testPutDatafeed_WithProjectRouting_SucceedsWhenMlFlagOff
issue: https://github.com/elastic/elasticsearch/issues/158117
- class: org.elasticsearch.xpack.esql.expression.function.scalar.spatial.StGeohexTests
method: testEvaluateBlockWithoutNulls {TestCase=geo_shape with literal precision and bounds}
issue: https://github.com/elastic/elasticsearch/issues/158128
- class: org.elasticsearch.xpack.logsdb.qa.StandardVersusLogsdbFieldLevelSecurityChallengeRestIT
method: testFieldLevelSecuritySourceEquivalence
issue: https://github.com/elastic/elasticsearch/issues/158180
- class: org.elasticsearch.xpack.esql.datasource.csv.CsvFormatReaderStatusSnapshotTests
method: testCountersPopulatedAfterDrain
issue: https://github.com/elastic/elasticsearch/issues/158220
- class: org.elasticsearch.xpack.core.security.authz.accesscontrol.FieldSubsetReaderTests
method: testSyntheticSourceWithCopyToKeywordDestinationAndFLSDocValues
issue: https://github.com/elastic/elasticsearch/issues/158222
- class: org.elasticsearch.xpack.inference.integration.AuthorizationTaskExecutorIT
issue: https://github.com/elastic/elasticsearch/issues/158224
- class: org.elasticsearch.xpack.esql.qa.parquet.ParquetNullListElementWarningIT
method: testDroppedNullElementIsAnnouncedInEveryDistributionMode
issue: https://github.com/elastic/elasticsearch/issues/158281
- class: org.elasticsearch.indices.recovery.IndexRecoveryIT
method: testPeerRecoveryTrimsLocalTranslog
issue: https://github.com/elastic/elasticsearch/issues/158303
- class: org.elasticsearch.index.IndexModuleTests
method: testQueryCacheDisabledByDefaultForStrictlyColumnarMode
issue: https://github.com/elastic/elasticsearch/issues/158305