We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd5dace commit b2ea69fCopy full SHA for b2ea69f
docs/release-notes/index.md
@@ -30,10 +30,11 @@ stack: ga 9.1.5
30
::::{dropdown} Prevent LIMIT + MV_EXPAND before remote ENRICH
31
Queries using LIMIT followed by MV_EXPAND before a remote ENRICH can produce incorrect results due to distributed execution semantics.
32
These queries are now unsupported and produce an error. Example:
33
-[source,yaml]
34
-----------------------------
+
+```yaml
35
FROM *:events | SORT @timestamp | LIMIT 2 | MV_EXPAND ip | ENRICH _remote:clientip_policy ON ip
36
+```
37
38
To avoid this error, reorder your query, for example by moving ENRICH earlier in the pipeline.
39
::::
40
0 commit comments