Skip to content

Commit 7f96070

Browse files
[Docs] ES|QL in Kibana 8.18 changes + fixes (elastic#125346) (elastic#125388)
(cherry picked from commit 546a20a) Co-authored-by: florent-leborgne <[email protected]>
1 parent 0c861aa commit 7f96070

File tree

3 files changed

+8
-13
lines changed

3 files changed

+8
-13
lines changed

docs/reference/esql/esql-kibana.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ To get started with {esql} in Discover, open the main menu and select
3737
[[esql-kibana-query-bar]]
3838
=== The query bar
3939

40-
After switching to {esql} mode, the query bar shows a sample query. For example:
40+
After switching to {esql} mode, the query bar shows your previous KQL or Lucene query converted into {esql}. If the query was empty, it shows a sample query. For example:
4141

4242
[source,esql]
4343
----

docs/reference/esql/esql-lookup-join.asciidoc

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ you
3838
3939
[discrete]
4040
[[esql-how-lookup-join-works]]
41-
==== How the `LOOKUP JOIN` command works ++[++esql-how-lookup-join-works++]++
41+
==== How the `LOOKUP JOIN` command works
4242

4343
The `LOOKUP JOIN` command adds new columns to a table, with data from
4444
{es} indices.
@@ -134,8 +134,7 @@ FROM employees
134134
====
135135
`LOOKUP JOIN` does not guarantee the output to be in
136136
any particular order. If a certain order is required, users should use a
137-
link:/reference/query-languages/esql/esql-commands.md#esql-sort[`SORT`]
138-
somewhere after the `LOOKUP JOIN`.
137+
<<esql-sort,`SORT`>> somewhere after the `LOOKUP JOIN`.
139138
====
140139

141140
[discrete]
@@ -157,9 +156,7 @@ with `double` (all represented as `double`)
157156
join only if they have a `.keyword` subfield
158157

159158
For a complete list of supported data types and their internal
160-
representations, see the
161-
link:/reference/query-languages/esql/limitations.md#_supported_types[Supported
162-
Field Types documentation].
159+
representations, see the <<esql-supported-types,Supported Field Types documentation>>.
163160

164161
[discrete]
165162
[[esql-lookup-join-limitations]]
@@ -171,9 +168,7 @@ The following are the current limitations with `LOOKUP JOIN`
171168
is a `KEYWORD` type. If the main index's join field is `TEXT` type, it
172169
must have an exact `.keyword` subfield that can be matched with the
173170
lookup index's `KEYWORD` field.
174-
* Indices in
175-
link:/reference/elasticsearch/index-settings/index-modules.md#index-mode-setting[lookup]
176-
mode are always single-sharded.
171+
* Indices in <<index-mode-setting,lookup>> mode are always single-sharded.
177172
* Cross cluster search is unsupported. Both source and lookup indices
178173
must be local.
179174
* `LOOKUP JOIN` can only use a single match field and a single index.

docs/reference/esql/processing-commands/lookup.asciidoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
This functionality is in technical preview and may be
88
changed or removed in a future release. Elastic will work to fix any
99
issues, but features in technical preview are not subject to the support
10-
SLA of official GA features. ::::
10+
SLA of official GA features.
1111
====
1212
`LOOKUP JOIN` enables you to add data from another index, AKA a 'lookup'
13-
index, to your ++{{++esql}} query results, simplifying data enrichment
13+
index, to your {esql} query results, simplifying data enrichment
1414
and analysis workflows.
1515

1616
*Syntax*
@@ -41,7 +41,7 @@ contains multi-valued entries, those entries will not match anything
4141

4242
*Description*
4343

44-
The `LOOKUP JOIN` command adds new columns to your ++{++esql} query
44+
The `LOOKUP JOIN` command adds new columns to your {esql} query
4545
results table by finding documents in a lookup index that share the same
4646
join field value as your result rows.
4747

0 commit comments

Comments
 (0)