Skip to content

Commit bd8d2b7

Browse files
Merge branch 'main' into prepare-for-assembler
2 parents 2756a00 + 4a1be8e commit bd8d2b7

File tree

14 files changed

+455
-33
lines changed

14 files changed

+455
-33
lines changed

deploy-manage/toc.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -784,11 +784,9 @@ toc:
784784
- file: upgrade/deployment-or-cluster/reading-indices-from-older-elasticsearch-versions.md
785785
- file: upgrade/deployment-or-cluster/kibana.md
786786
children:
787+
- file: upgrade/deployment-or-cluster/saved-object-migrations.md
787788
- file: upgrade/deployment-or-cluster/kibana-roll-back.md
788-
- file: upgrade/ingest-components.md
789-
- file: upgrade/internal-upgrade-processes.md
790-
children:
791-
- file: upgrade/internal-upgrade-processes/saved-object-migrations.md
789+
- file: upgrade/ingest-components.md
792790
- file: uninstall.md
793791
children:
794792
- file: uninstall/uninstall-elastic-cloud-enterprise.md

deploy-manage/upgrade/deployment-or-cluster/kibana.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ When you upgrade {{kib}}, you also upgrade the {{observability}} and {{elastic-s
1111
::::{warning}
1212
{{kib}} automatically runs saved object migrations when required. To roll back to an earlier version in case of an upgrade failure, you **must** have a [backup snapshot](../../tools/snapshot-and-restore.md) that includes the `kibana` feature state. Snapshots include this feature state by default.
1313

14-
For more information, refer to [Migrate saved objects](../internal-upgrade-processes/saved-object-migrations.md).
14+
For more information, refer to [Migrate saved objects](saved-object-migrations.md).
1515

1616
::::
1717

File renamed without changes.

deploy-manage/upgrade/internal-upgrade-processes.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

explore-analyze/find-and-organize/saved-objects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ We have made several enhancements to minimize the impact, and this document desc
127127

128128
### Impact upon upgrading to version 8.x or later [saved-object-ids-impact-upon-upgrading]
129129

130-
Every time you upgrade {{kib}}, [saved objects are migrated to a new format](/deploy-manage/upgrade/internal-upgrade-processes/saved-object-migrations.md). When you first upgrade to version 8.x or later, this migration process will start enforcing globally unique saved object IDs.
130+
Every time you upgrade {{kib}}, [saved objects are migrated to a new format](/deploy-manage/upgrade/deployment-or-cluster/saved-object-migrations.md). When you first upgrade to version 8.x or later, this migration process will start enforcing globally unique saved object IDs.
131131

132132
In practical terms, **any old saved objects that exist in a custom space will have their IDs changed to a new UUID**, while saved objects in the Default space will be unchanged. This is how we can ensure that every saved object ID is unique. For example: if you had dashboard "123" in the Default space and dashboard "123" in Another space, after the upgrade you would have dashboard "123" in the Default space and dashboard "456" in Another space.
133133

explore-analyze/query-filter/languages/esql-getting-started.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,8 @@ This guide shows how you can use {{esql}} to query and aggregate your data.
1212

1313
::::{tip}
1414
This getting started is also available as an [interactive Python notebook](https://github.com/elastic/elasticsearch-labs/blob/main/notebooks/esql/esql-getting-started.ipynb) in the `elasticsearch-labs` GitHub repository.
15-
1615
::::
1716

18-
19-
2017
## Prerequisites [esql-getting-started-prerequisites]
2118

2219
To follow along with the queries in this guide, you can either set up your own deployment, or use Elastic’s public {{esql}} demo environment.
@@ -426,3 +423,5 @@ For more about data processing with {{esql}}, refer to [Data processing with DIS
426423

427424
To learn more about {{esql}}, refer to [{{esql}} reference](elasticsearch://reference/query-languages/esql.md).
428425

426+
Learn more about using {{esql}} for Search use cases in this tutorial: [Search and filter with {{esql}}](/solutions/search/esql-full-text-filter-tutorial.md).
427+

explore-analyze/query-filter/languages/esql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ You can use it:
3535
- In your queries to {{es}} APIs, using the [`_query` endpoint](/explore-analyze/query-filter/languages/esql-rest.md) that accepts queries written in {{esql}} syntax.
3636
- Within various {{kib}} tools such as Discover and Dashboards, to explore your data and build powerful visualizations.
3737

38-
% Learn more in [Getting started with {{esql}}](/solutions/search/get-started.md), or try [our training course](https://www.elastic.co/training/introduction-to-esql).
38+
Learn more about using {{esql}} for Search use cases in this tutorial: [Search and filter with {{esql}}](/solutions/search/esql-full-text-filter-tutorial.md).
3939

4040
## Next steps
4141

explore-analyze/query-filter/languages/querydsl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ mapped_urls:
77
- https://www.elastic.co/guide/en/elasticsearch/reference/current/query-filter-context.html
88
---
99

10-
# QueryDSL
10+
# Query DSL
1111

1212
$$$filter-context$$$
1313

solutions/search/api-quickstarts.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ Use the following quickstarts to get hands-on experience with Elasticsearch APIs
1414
- [Index and search data using Elasticsearch APIs](elasticsearch-basics-quickstart.md): Learn about indices, documents, and mappings, and perform a basic search using the Query DSL.
1515
- [Basic full-text search and filtering in Elasticsearch](querydsl-full-text-filter-tutorial.md): Learn about different options for querying data, including full-text search and filtering, using the Query DSL.
1616
- [Analyze eCommerce data with aggregations using Query DSL](/explore-analyze/query-filter/aggregations/tutorial-analyze-ecommerce-data-with-aggregations-using-query-dsl.md): Learn how to analyze data using different types of aggregations, including metrics, buckets, and pipelines.
17-
% - [Getting started with ES|QL](esql-getting-started.md): Learn how to query and aggregate your data using ES|QL.
17+
% - [Getting started with {{esql}}](esql-getting-started.md): Learn how to query and aggregate your data using {{esql}}.
18+
- [Search and filter with {{esql}}](esql-full-text-filter-tutorial.md): Learn how to perform full-text and semantic search in {{esql}}, combined with filtering.
1819
- [Semantic search](semantic-search/semantic-search-semantic-text.md): Learn how to create embeddings for your data with `semantic_text` and query using the `semantic` query.
1920
- [Hybrid search](hybrid-semantic-text.md): Learn how to combine semantic search using`semantic_text` with full-text search.
2021
- [Bring your own dense vector embeddings](vector/bring-own-vectors.md): Learn how to ingest dense vector embeddings into Elasticsearch.

0 commit comments

Comments
 (0)