Skip to content

Commit 801ad68

Browse files
committed
Update 9.0.0 docs with changes from main
1 parent 622bed4 commit 801ad68

File tree

3 files changed

+31
-38
lines changed

3 files changed

+31
-38
lines changed

build-tools-internal/src/main/resources/templates/index.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ for (highlights in [notableHighlights, nonNotableHighlights]) {
4040
for (highlight in highlights) { %>
4141
::::{dropdown} ${highlight.title}
4242
${highlight.body.trim()}
43-
44-
For more information, check [PR #${highlight.pr}](https://github.com/elastic/elasticsearch/pull/${highlight.pr}).
4543
::::
4644
<% }
4745
}

docs/release-notes/changelog-bundles/9.0.0.yml

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ changelogs:
165165
breaking:
166166
area: Analysis
167167
title: The "german2" snowball stemmer is now an alias for the "german" stemmer
168-
details: "Lucene 10 has merged the improved \"german2\" snowball language stemmer with the \"german\" stemmer. For Elasticsearch, \"german2\" is now a deprecated alias for \"german\". This may results in slightly different tokens being generated for terms with umlaut substitution (like \"ue\" for \"ü\" etc...)"
168+
details: 'Lucene 10 has merged the improved "german2" snowball language stemmer with the "german" stemmer. For Elasticsearch, "german2" is now a deprecated alias for "german". This may results in slightly different tokens being generated for terms with umlaut substitution (like "ue" for " etc...)'
169169
impact: Replace usages of "german2" with "german" in analysis configuration. Old indices that use the "german" stemmer should be reindexed if possible.
170170
notable: false
171171
essSettingChange: false
@@ -640,7 +640,7 @@ changelogs:
640640
breaking:
641641
area: Transform
642642
title: Remove `data_frame_transforms` roles
643-
details: '`data_frame_transforms_admin` and `data_frame_transforms_user` were deprecated in Elasticsearch 7 and are being removed in Elasticsearch 9. `data_frame_transforms_admin` is now `transform_admin`. `data_frame_transforms_user` is now `transform_user`. Users must call the `_update` API to replace the permissions on the Transform before the Transform can be started.'
643+
details: "`data_frame_transforms_admin` and `data_frame_transforms_user` were deprecated in Elasticsearch 7 and are being removed in Elasticsearch 9. `data_frame_transforms_admin` is now `transform_admin`. `data_frame_transforms_user` is now `transform_user`. Users must call the `_update` API to replace the permissions on the Transform before the Transform can be started."
644644
impact: "Transforms created with either the `data_frame_transforms_admin` or the `data_frame_transforms_user` role will fail to start. The Transform will remain in a `stopped` state, and its health will be red while displaying permission failures."
645645
notable: false
646646
essSettingChange: false
@@ -723,7 +723,7 @@ changelogs:
723723
issues:
724724
- 105135
725725
- pr: 117750
726-
summary: '`CrossClusterIT` `testCancel` failure'
726+
summary: "`CrossClusterIT` `testCancel` failure"
727727
area: Search
728728
type: bug
729729
issues:
@@ -788,7 +788,7 @@ changelogs:
788788
type: bug
789789
issues: []
790790
- pr: 117963
791-
summary: '`SearchServiceTests.testParseSourceValidation` failure'
791+
summary: "`SearchServiceTests.testParseSourceValidation` failure"
792792
area: Search
793793
type: bug
794794
issues: []
@@ -969,7 +969,7 @@ changelogs:
969969
type: enhancement
970970
issues: []
971971
- pr: 118435
972-
summary: '`_score` should not be a reserved attribute in ES|QL'
972+
summary: "`_score` should not be a reserved attribute in ES|QL"
973973
area: ES|QL
974974
type: enhancement
975975
issues:
@@ -1056,7 +1056,7 @@ changelogs:
10561056
type: enhancement
10571057
issues: []
10581058
- pr: 118681
1059-
summary: '`ConnectTransportException` returns retryable BAD_GATEWAY'
1059+
summary: "`ConnectTransportException` returns retryable BAD_GATEWAY"
10601060
area: Network
10611061
type: enhancement
10621062
issues:
@@ -1089,8 +1089,11 @@ changelogs:
10891089
issues: []
10901090
highlight:
10911091
notable: true
1092-
title: Add new experimental `rank_vectors` mapping for late-interaction second order ranking
1093-
body: "Late-interaction models are powerful rerankers. While their size and overall cost doesn't lend itself for HNSW indexing, utilizing them as second order reranking can provide excellent boosts in relevance. The new `rank_vectors` mapping allows for rescoring over new and novel multi-vector late-interaction models like ColBERT or ColPali."
1092+
title: rank_vectors field type is now available for late-interaction ranking
1093+
body: |
1094+
[`rank_vectors`](../reference/elasticsearch/mapping-reference/rank-vectors.md) is a new field type released as an experimental feature in Elasticsearch 9.0. It is designed to be used with dense vectors and allows for late-interaction second order ranking.
1095+
1096+
Late-interaction models are powerful rerankers. While their size and overall cost doesn’t lend itself for HNSW indexing, utilizing them as second order reranking can provide excellent boosts in relevance. The new `rank_vectors` mapping allows for rescoring over new and novel multi-vector late-interaction models like ColBERT or ColPali.
10941097
pr: 118804
10951098
- pr: 118823
10961099
summary: Fix attribute set equals
@@ -1922,16 +1925,14 @@ changelogs:
19221925
- 121185
19231926
highlight:
19241927
notable: true
1925-
title: Enable LOOKUP JOIN in non-snapshot builds
1928+
title: "ES|QL LOOKUP JOIN is now available in technical preview"
19261929
body: |-
1927-
This effectively releases LOOKUP JOIN into tech preview. Docs will
1928-
follow in a separate PR.
1929-
1930-
- Enable the lexing/grammar for LOOKUP JOIN in non-snapshot builds.
1931-
- Remove the grammar for the unsupported `| JOIN ...` command (without `LOOKUP` as first keyword). The way the lexer modes work, otherwise we'd also have to enable `| JOIN ...` syntax on non-snapshot builds and would have to add additional validation to provide appropriate error messages.
1932-
- Remove grammar for `LOOKUP JOIN index AS ...` because qualifiers are not yet supported. Otherwise we'd have to put in additional validation as well to prevent such queries.
1930+
[LOOKUP JOIN](../reference/query-languages/esql/esql-commands.md) is now available in technical preview. LOOKUP JOIN combines data from your ES|QL queries with matching records from a lookup index, enabling you to:
19331931
1934-
Also fix https://github.com/elastic/elasticsearch/issues/121185
1932+
- Enrich your search results with reference data
1933+
- Speed up root-cause analysis and security investigations
1934+
- Join data across indices without complex queries
1935+
- Reduce operational overhead when correlating events
19351936
pr: 121193
19361937
- pr: 121196
19371938
summary: Fix geoip databases index access after system feature migration
@@ -1944,7 +1945,7 @@ changelogs:
19441945
type: bug
19451946
issues: []
19461947
- pr: 121325
1947-
summary: '`ReindexDataStreamIndex` bug in assertion caused by reference equality'
1948+
summary: "`ReindexDataStreamIndex` bug in assertion caused by reference equality"
19481949
area: Data streams
19491950
type: bug
19501951
issues: []
@@ -2342,8 +2343,8 @@ changelogs:
23422343
issues: []
23432344
highlight:
23442345
notable: true
2345-
title: Release semantic_text as a GA feature
2346-
body: semantic_text is now an official GA (generally available) feature! This field type allows you to easily set up and perform semantic search with minimal ramp up time.
2346+
title: The semantic_text field type is now GA
2347+
body: "[`semantic_text`](../reference/elasticsearch/mapping-reference/semantic-text.md) is now an official GA (generally available) feature! This field type allows you to easily set up and perform semantic search with minimal ramp up time."
23472348
pr: 124669
23482349
- pr: 124739
23492350
summary: Improve rolling up metrics

docs/release-notes/index.md

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -90,29 +90,23 @@ Vector Search:
9090

9191
### Highlights [elasticsearch-900-highlights]
9292

93-
::::{dropdown} Add new experimental `rank_vectors` mapping for late-interaction second order ranking
94-
Late-interaction models are powerful rerankers. While their size and overall cost doesn't lend itself for HNSW indexing, utilizing them as second order reranking can provide excellent boosts in relevance. The new `rank_vectors` mapping allows for rescoring over new and novel multi-vector late-interaction models like ColBERT or ColPali.
93+
::::{dropdown} rank_vectors field type is now available for late-interaction ranking
94+
[`rank_vectors`](../reference/elasticsearch/mapping-reference/rank-vectors.md) is a new field type released as an experimental feature in Elasticsearch 9.0. It is designed to be used with dense vectors and allows for late-interaction second order ranking.
9595

96-
For more information, check [PR #118804](https://github.com/elastic/elasticsearch/pull/118804).
96+
Late-interaction models are powerful rerankers. While their size and overall cost doesn’t lend itself for HNSW indexing, utilizing them as second order reranking can provide excellent boosts in relevance. The new `rank_vectors` mapping allows for rescoring over new and novel multi-vector late-interaction models like ColBERT or ColPali.
9797
::::
9898

99-
::::{dropdown} Enable LOOKUP JOIN in non-snapshot builds
100-
This effectively releases LOOKUP JOIN into tech preview. Docs will
101-
follow in a separate PR.
99+
::::{dropdown} ES|QL LOOKUP JOIN is now available in technical preview
100+
[LOOKUP JOIN](../reference/query-languages/esql/esql-commands.md) is now available in technical preview. LOOKUP JOIN combines data from your ES|QL queries with matching records from a lookup index, enabling you to:
102101

103-
- Enable the lexing/grammar for LOOKUP JOIN in non-snapshot builds.
104-
- Remove the grammar for the unsupported `| JOIN ...` command (without `LOOKUP` as first keyword). The way the lexer modes work, otherwise we'd also have to enable `| JOIN ...` syntax on non-snapshot builds and would have to add additional validation to provide appropriate error messages.
105-
- Remove grammar for `LOOKUP JOIN index AS ...` because qualifiers are not yet supported. Otherwise we'd have to put in additional validation as well to prevent such queries.
106-
107-
Also fix https://github.com/elastic/elasticsearch/issues/121185
108-
109-
For more information, check [PR #121193](https://github.com/elastic/elasticsearch/pull/121193).
102+
- Enrich your search results with reference data
103+
- Speed up root-cause analysis and security investigations
104+
- Join data across indices without complex queries
105+
- Reduce operational overhead when correlating events
110106
::::
111107

112-
::::{dropdown} Release semantic_text as a GA feature
113-
semantic_text is now an official GA (generally available) feature! This field type allows you to easily set up and perform semantic search with minimal ramp up time.
114-
115-
For more information, check [PR #124669](https://github.com/elastic/elasticsearch/pull/124669).
108+
::::{dropdown} The semantic_text field type is now GA
109+
[`semantic_text`](../reference/elasticsearch/mapping-reference/semantic-text.md) is now an official GA (generally available) feature! This field type allows you to easily set up and perform semantic search with minimal ramp up time.
116110
::::
117111

118112
### Features and enhancements [elasticsearch-900-features-enhancements]

0 commit comments

Comments
 (0)