Skip to content

Commit 69274e3

Browse files
authored
[DOCS] Update doc links (#133534)
follow up to: #133301 elastic/docs-content#2658
1 parent f2657d6 commit 69274e3

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

docs/reference/elasticsearch/configuration-reference/thread-pool-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ $$$search-throttled$$$`search_throttled`
9292
: For [watch executions](docs-content://explore-analyze/alerts-cases/watcher.md). Thread pool type is `fixed` with a default maximum size of `min(5 * (`[`# of allocated processors`](#node.processors)`), 50)` and queue_size of `1000`.
9393

9494
$$$modules-threadpool-esql$$$`esql_worker`
95-
: Executes [{{esql}}](docs-content://explore-analyze/query-filter/languages/esql.md) operations. Thread pool type is `fixed` with a size of `int((`[`# of allocated processors`](#node.processors) ` * 3) / 2) + 1`, and queue_size of `1000`.
95+
: Executes [{{esql}}](/reference/query-languages/esql.md) operations. Thread pool type is `fixed` with a size of `int((`[`# of allocated processors`](#node.processors) ` * 3) / 2) + 1`, and queue_size of `1000`.
9696

9797
Thread pool settings are [Static](docs-content://deploy-manage/stack-settings.md#static-cluster-setting) and can be changed by editing `elasticsearch.yml`. Changing a specific thread pool can be done by setting its type-specific parameters; for example, changing the number of threads in the `write` thread pool:
9898

docs/reference/elasticsearch/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
- [Learn how to search your data](docs-content://solutions/search/querying-for-search.md)
4747
- Query data programmatically: use query languages to run advanced search, filtering, or analytics
4848
- [Query DSL](docs-content://explore-analyze/query-filter/languages/querydsl.md): full JSON-based query language
49-
- [ES|QL](docs-content://explore-analyze/query-filter/languages/esql.md): fast, SQL-like language with piped syntax
49+
- [ES|QL](/reference/query-languages/esql.md): fast, SQL-like language with piped syntax
5050
- [EQL](docs-content://explore-analyze/query-filter/languages/eql.md): for event-based time series data, such as logs, metrics, and traces
5151
- [SQL](docs-content://explore-analyze/query-filter/languages/sql.md): SQL-style queries on Elasticsearch data
5252
- [Search applications](docs-content://solutions/search/search-applications.md)

docs/reference/query-languages/esql/_snippets/commands/layout/enrich.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ENRICH policy [ON match_field] [WITH [new_name1 = ]field1, [new_name2 = ]field2,
2222

2323
`mode`
2424
: The mode of the enrich command in cross cluster {{esql}}.
25-
See [enrich across clusters](docs-content://explore-analyze/query-filter/languages/esql-cross-clusters.md#ccq-enrich).
25+
See [enrich across clusters](/reference/query-languages/esql/esql-cross-clusters.md#ccq-enrich).
2626

2727
`match_field`
2828
: The match field. `ENRICH` uses its value to look for records in the enrich

docs/reference/query-languages/esql/_snippets/commands/layout/from.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ FROM <logs-{now/d}>
5959
```
6060

6161
Use comma-separated lists or wildcards to
62-
[query multiple data streams, indices, or aliases](docs-content://explore-analyze/query-filter/languages/esql-multi-index.md):
62+
[query multiple data streams, indices, or aliases](/reference/query-languages/esql/esql-multi-index.md):
6363

6464
```esql
6565
FROM employees-00001,other-employees-*
6666
```
6767

6868
Use the format `<remote_cluster_name>:<target>` to
69-
[query data streams and indices on remote clusters](docs-content://explore-analyze/query-filter/languages/esql-cross-clusters.md):
69+
[query data streams and indices on remote clusters](/reference/query-languages/esql/esql-cross-clusters.md):
7070

7171
```esql
7272
FROM cluster_one:employees-00001,cluster_two:other-employees-*

docs/reference/query-languages/esql/esql-getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,5 +420,5 @@ For more about data processing with {{esql}}, refer to [Data processing with DIS
420420
- Explore the zero-setup, live [{{esql}} demo environment](http://esql.demo.elastic.co/).
421421
-
422422
- Follow along with our hands-on tutorials:
423-
- [Search and filter with {{esql}}](docs-content://solutions/search/esql-search-tutorial.md): A hands-on tutorial that shows you how to use {{esql}} to search and filter data.
423+
- [Search and filter with {{esql}}](/reference/query-languages/esql/esql-search-tutorial.md): A hands-on tutorial that shows you how to use {{esql}} to search and filter data.
424424
- [Threat hunting with {{esql}}](docs-content://solutions/security/esql-for-security/esql-threat-hunting-tutorial.md): A hands-on tutorial that shows you how to use {{esql}} for advanced threat hunting techniques and security analysis.

docs/reference/query-languages/esql/esql-rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ products:
1212
# Use the {{esql}} REST API [esql-rest]
1313

1414
::::{tip}
15-
The [Search and filter with {{esql}}](docs-content://solutions/search/esql-search-tutorial.md) tutorial provides a hands-on introduction to the {{esql}} `_query` API.
15+
The [Search and filter with {{esql}}](/reference/query-languages/esql/esql-search-tutorial.md) tutorial provides a hands-on introduction to the {{esql}} `_query` API.
1616
::::
1717

1818
## Overview [esql-rest-overview]

docs/reference/query-languages/esql/esql-search-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ FROM cooking_blog
3131
| LIMIT 1000
3232
```
3333

34-
If you want to run these queries in the [Dev Tools Console](docs-content://explore-analyze/query-filter/languages/esql-rest.md#esql-kibana-console), you need to use the following syntax:
34+
If you want to run these queries in the [Dev Tools Console](/reference/query-languages/esql/esql-rest.md#esql-kibana-console), you need to use the following syntax:
3535

3636
```console
3737
POST /_query?format=txt

docs/reference/query-languages/esql/esql-syntax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ FROM library
159159
}
160160
```
161161

162-
You can also use [query parameters](docs-content://explore-analyze/query-filter/languages/esql-rest.md#esql-rest-params) in function named parameters:
162+
You can also use [query parameters](/reference/query-languages/esql/esql-rest.md#esql-rest-params) in function named parameters:
163163

164164
```console
165165
POST /_query

docs/reference/query-languages/esql/functions-operators/search-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ mapped_pages:
88

99
:::{tip}
1010
Get started with {{esql}} for search use cases with
11-
our [hands-on tutorial](docs-content://solutions/search/esql-search-tutorial.md).
11+
our [hands-on tutorial](/reference/query-languages/esql/esql-search-tutorial.md).
1212

1313
For a high-level overview of search functionalities in {{esql}}, and to learn about relevance scoring, refer to [{{esql}} for search](docs-content://solutions/search/esql-for-search.md#esql-for-search-scoring).
1414
:::

docs/reference/query-languages/esql/limitations.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Some [field types](/reference/elasticsearch/mapping-reference/field-data-types.m
9393
* `cartesian_shape`
9494

9595

96-
In addition, when [querying multiple indexes](docs-content://explore-analyze/query-filter/languages/esql-multi-index.md), it’s possible for the same field to be mapped to multiple types. These fields cannot be directly used in queries or returned in results, unless they’re [explicitly converted to a single type](docs-content://explore-analyze/query-filter/languages/esql-multi-index.md#esql-multi-index-union-types).
96+
In addition, when [querying multiple indexes](/reference/query-languages/esql/esql-multi-index.md), it’s possible for the same field to be mapped to multiple types. These fields cannot be directly used in queries or returned in results, unless they’re [explicitly converted to a single type](/reference/query-languages/esql/esql-multi-index.md#esql-multi-index-union-types).
9797

9898

9999
## _source availability [esql-_source-availability]
@@ -177,10 +177,10 @@ Or consider using one of the [full-text search](/reference/query-languages/esql/
177177

178178
## Using {{esql}} to query multiple indices [esql-multi-index-limitations]
179179

180-
As discussed in more detail in [Using {{esql}} to query multiple indices](docs-content://explore-analyze/query-filter/languages/esql-multi-index.md), {{esql}} can execute a single query across multiple indices, data streams, or aliases. However, there are some limitations to be aware of:
180+
As discussed in more detail in [Using {{esql}} to query multiple indices](/reference/query-languages/esql/esql-multi-index.md), {{esql}} can execute a single query across multiple indices, data streams, or aliases. However, there are some limitations to be aware of:
181181

182182
* All underlying indexes and shards must be active. Using admin commands or UI, it is possible to pause an index or shard, for example by disabling a frozen tier instance, but then any {{esql}} query that includes that index or shard will fail, even if the query uses [`WHERE`](/reference/query-languages/esql/commands/where.md) to filter out the results from the paused index. If you see an error of type `search_phase_execution_exception`, with the message `Search rejected due to missing shards`, you likely have an index or shard in `UNASSIGNED` state.
183-
* The same field must have the same type across all indexes. If the same field is mapped to different types it is still possible to query the indexes, but the field must be [explicitly converted to a single type](docs-content://explore-analyze/query-filter/languages/esql-multi-index.md#esql-multi-index-union-types).
183+
* The same field must have the same type across all indexes. If the same field is mapped to different types it is still possible to query the indexes, but the field must be [explicitly converted to a single type](/reference/query-languages/esql/esql-multi-index.md#esql-multi-index-union-types).
184184

185185

186186
## Time series data streams are not supported [esql-tsdb]

0 commit comments

Comments
 (0)