Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ESQL: Ignore order in LookupMessageFromIndexKeepReordered #118256

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
6 changes: 0 additions & 6 deletions muted-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,12 +245,6 @@ tests:
- class: org.elasticsearch.packaging.test.ArchiveTests
method: test41AutoconfigurationNotTriggeredWhenNodeCannotContainData
issue: https://github.com/elastic/elasticsearch/issues/118110
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT
method: test {lookup-join.LookupMessageFromIndexKeepReordered SYNC}
issue: https://github.com/elastic/elasticsearch/issues/118150
- class: org.elasticsearch.xpack.esql.qa.multi_node.EsqlSpecIT
method: test {lookup-join.LookupMessageFromIndexKeepReordered ASYNC}
issue: https://github.com/elastic/elasticsearch/issues/118151
- class: org.elasticsearch.xpack.remotecluster.CrossClusterEsqlRCS2UnavailableRemotesIT
method: testEsqlRcs2UnavailableRemoteScenarios
issue: https://github.com/elastic/elasticsearch/issues/117419
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ FROM sample_data
| LOOKUP JOIN message_types_lookup ON message
| KEEP type, client_ip, event_duration, message
;
ignoreOrder:true

type:keyword | client_ip:ip | event_duration:long | message:keyword
Success | 172.21.3.15 | 1756467 | Connected to 10.1.0.1
Expand Down