Skip to content
Merged
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
10 changes: 10 additions & 0 deletions docs/changelog/135051.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,13 @@ summary: Ban Limit + `MvExpand` before remote Enrich
area: ES|QL
type: bug
issues: []
highlight:
title: Prevent LIMIT + MV_EXPAND before remote ENRICH
body: |-
Queries using LIMIT followed by MV_EXPAND before a remote ENRICH can produce incorrect results due to distributed execution semantics.
These queries are now unsupported and produce an error. Example:
[source,yaml]
----------------------------
FROM *:events | SORT @timestamp | LIMIT 2 | MV_EXPAND ip | ENRICH _remote:clientip_policy ON ip
----------------------------
To avoid this error, reorder your query, for example by moving ENRICH earlier in the pipeline.