Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,19 @@ setup:
body: { "@timestamp": 1593639468350 }
refresh: true

# Wait for the shards to be allocated to avoid missing results in the stats request
# See https://github.com/elastic/elasticsearch/issues/118217#issuecomment-2996315057 for more context
- do:
cluster.health:
index: simple-data-stream1,simple-data-stream2
wait_for_status: green
wait_for_no_relocating_shards: true

- do:
indices.data_streams_stats: {}
- match: { _shards.total: 3 }
- match: { _shards.successful: 3 }
- match: { _shards.failed: 0 }
- match: { data_stream_count: 2 }
- match: { backing_indices: 3 }
- length: { data_streams: 2 }
Expand Down
3 changes: 0 additions & 3 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,6 @@ tests:
- class: org.elasticsearch.packaging.test.ArchiveTests
method: test51AutoConfigurationWithPasswordProtectedKeystore
issue: https://github.com/elastic/elasticsearch/issues/118212
- class: org.elasticsearch.datastreams.DataStreamsClientYamlTestSuiteIT
method: test {p0=data_stream/120_data_streams_stats/Multiple data stream}
issue: https://github.com/elastic/elasticsearch/issues/118217
- class: org.elasticsearch.xpack.ccr.rest.ShardChangesRestIT
method: testShardChangesNoOperation
issue: https://github.com/elastic/elasticsearch/issues/118800
Expand Down