Skip to content
Open
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
7 changes: 7 additions & 0 deletions docs/reference/query-languages/esql/esql-cross-clusters.md
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,13 @@
```


## LOOKUP JOIN across clusters [ccq-lookup-join]

{{esql}} [`LOOKUP JOIN`](/reference/query-languages/esql/esql-lookup-join.md#cross-cluster-support) is supported in cross-cluster queries. By default, {{esql}} resolves the lookup index on every cluster in the query and each cluster joins against its own local index with that name. In this case, the lookup index must exist on every cluster being queried. This follows the same pattern as [remote mode Enrich](#esql-enrich-remote).

{applies_to}`stack: ga 9.6+` If the lookup index is missing from one or more remote clusters, use [coordinator mode](/reference/query-languages/esql/esql-lookup-join.md#coordinator-mode) to join against a local cluster lookup index copy.

Check failure on line 420 in docs/reference/query-languages/esql/esql-cross-clusters.md

View workflow job for this annotation

GitHub Actions / build / build

`coordinator-mode` does not exist in reference/query-languages/esql/esql-lookup-join.md.


## Excluding clusters or indices from {{esql}} query [ccq-exclude]

Use exclusions in the `FROM` command to omit an entire remote cluster or specific indices from a query.
Expand Down
Loading